@@ -8,7 +8,7 @@ use gtk::{
8
8
use once_cell:: sync:: Lazy ;
9
9
use std:: cell:: { Cell , RefCell } ;
10
10
11
- use super :: { group_box:: PickerBasicGroup , PickerGroupBox , PickerKey } ;
11
+ use super :: { group_box:: PickerBasicGroup , PickerGroupBox } ;
12
12
use backend:: { is_qmk_basic, DerefCell , Keycode , Mods } ;
13
13
14
14
#[ derive( Clone , Copy , PartialEq ) ]
@@ -80,13 +80,13 @@ impl ObjectImpl for TapHoldInner {
80
80
let hold_group_box = cascade ! {
81
81
PickerGroupBox :: new( vec![
82
82
Box :: new( PickerBasicGroup :: new(
83
- "Standard Modifiers" . to_string( ) ,
83
+ "Modifiers" . to_string( ) ,
84
84
4 ,
85
85
1.5 ,
86
86
MODIFIERS ,
87
87
) ) ,
88
88
Box :: new( PickerBasicGroup :: new(
89
- "Access Layer Modifiers " . to_string( ) ,
89
+ "Layer Keys " . to_string( ) ,
90
90
4 ,
91
91
1.5 ,
92
92
LAYERS ,
@@ -122,9 +122,12 @@ impl ObjectImpl for TapHoldInner {
122
122
} ) ) ;
123
123
..set_halign( gtk:: Align :: Start ) ;
124
124
} ) ;
125
- // TODO label groups? Use group box?
126
125
..add( & hold_group_box) ;
127
- // TODO shift click label
126
+ ..add( & cascade! {
127
+ gtk:: Label :: new( Some ( "Shift + click to select multiple modifiers." ) ) ;
128
+ ..set_halign( gtk:: Align :: Start ) ;
129
+ } ) ;
130
+ // XXX grey?
128
131
..add( & cascade! {
129
132
gtk:: Label :: new( Some ( "2. Select an action to use when the key is tapped." ) ) ;
130
133
..set_attributes( Some ( & cascade! {
0 commit comments