@@ -46,17 +46,17 @@ namespace cfg {
46
46
const char * color_bg = " Background color" ;
47
47
const char * color_fg = " Foreground color" ;
48
48
const char * cpu_busy = " CPU utilization" ;
49
- const char * cpu_busy_percent = " └ show percentage" ;
49
+ const char * cpu_busy_percent = " └ Show percentage" ;
50
50
const char * enabled = " Enabled" ;
51
51
const char * fs_read = " Filesystem" ;
52
52
const char * gpu_busy = " GPU utilization" ;
53
- const char * gpu_busy_percent = " └ show percentage" ;
53
+ const char * gpu_busy_percent = " └ Show percentage" ;
54
54
const char * gpu_fps = " Frames per second" ;
55
55
const char * interval = " Update interval" ;
56
56
const char * net_bw = " Network bandwidth" ;
57
57
const char * time = " Time" ;
58
- const char * time_24h = " └ format " ;
59
- const char * toggle_shortcut = " Toggle shortcut" ;
58
+ const char * time_24h = " └ Format " ;
59
+ const char * toggle_shortcut = " └ Toggle shortcut" ;
60
60
}
61
61
62
62
@@ -75,7 +75,7 @@ namespace cfg {
75
75
const bool net_bw = true ;
76
76
const bool time = true ;
77
77
const bool time_24h = true ;
78
- const button_combo toggle_shortcut = wups::config::vpad_combo {
78
+ const button_combo toggle_shortcut = wups::config::vpad_buttons {
79
79
VPAD_BUTTON_TV | VPAD_BUTTON_LEFT
80
80
};
81
81
}
@@ -108,6 +108,10 @@ namespace cfg {
108
108
defaults::enabled,
109
109
" yes" , " no" ));
110
110
111
+ root.add (wups::config::button_combo_item::create (labels::toggle_shortcut,
112
+ toggle_shortcut,
113
+ defaults::toggle_shortcut));
114
+
111
115
root.add (wups::config::bool_item::create (labels::time,
112
116
time,
113
117
defaults::time,
@@ -174,10 +178,6 @@ namespace cfg {
174
178
100ms, 5000ms,
175
179
100ms));
176
180
177
- root.add (wups::config::button_combo_item::create (labels::toggle_shortcut,
178
- toggle_shortcut,
179
- defaults::toggle_shortcut));
180
-
181
181
return WUPSCONFIG_API_CALLBACK_RESULT_SUCCESS;
182
182
}
183
183
0 commit comments