We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4d8dd7 commit cbcca6dCopy full SHA for cbcca6d
1 file changed
src/ui/profiles_tab.rs
@@ -43,13 +43,10 @@ impl SettingsApp {
43
self.config.profiles[i].hotkey = new_hk;
44
self.dirty = true;
45
}
46
- ui.horizontal(|ui| {
47
- if ui.button("Clear hotkey").clicked() {
48
- self.config.profiles[i].hotkey.clear();
49
- self.dirty = true;
50
- }
51
- ui.label("(empty = no hotkey)");
52
- });
+ if ui.button("Clear hotkey").clicked() {
+ self.config.profiles[i].hotkey.clear();
+ self.dirty = true;
+ }
53
54
ui.horizontal(|ui| {
55
let ric = ui.checkbox(&mut self.config.profiles[i].icons, "Hide Icons");
0 commit comments