File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,15 @@ pub fn bpc_ui(
58
58
ui. label ( name) ;
59
59
} ) ;
60
60
61
+ row. col ( |ui| match orientation_name_from_id ( summary. frame_id ) {
62
+ Some ( name) => {
63
+ ui. label ( format ! ( "{name} ({})" , summary. frame_id) ) ;
64
+ }
65
+ None => {
66
+ ui. label ( format ! ( "{}" , summary. frame_id) ) ;
67
+ }
68
+ } ) ;
69
+
61
70
row. col ( |ui| {
62
71
if show_unix {
63
72
ui. text_edit_singleline ( & mut format ! (
@@ -80,15 +89,6 @@ pub fn bpc_ui(
80
89
} ;
81
90
} ) ;
82
91
83
- row. col ( |ui| match orientation_name_from_id ( summary. frame_id ) {
84
- Some ( name) => {
85
- ui. label ( format ! ( "{name} ({})" , summary. frame_id) ) ;
86
- }
87
- None => {
88
- ui. label ( format ! ( "{}" , summary. frame_id) ) ;
89
- }
90
- } ) ;
91
-
92
92
row. col (
93
93
|ui| match orientation_name_from_id ( summary. inertial_frame_id ) {
94
94
Some ( name) => {
You can’t perform that action at this time.
0 commit comments