Commit c8d0c9ca authored by Francois Cartegnie's avatar Francois Cartegnie

Qt: simple_prefs: fix hotkeys change tips

parent b0eed35d
...@@ -1315,7 +1315,7 @@ KeySelectorControl::KeySelectorControl( vlc_object_t *_p_this, ...@@ -1315,7 +1315,7 @@ KeySelectorControl::KeySelectorControl( vlc_object_t *_p_this,
QGridLayout *gLayout = new QGridLayout( keyContainer ); QGridLayout *gLayout = new QGridLayout( keyContainer );
label = new QLabel( label = new QLabel(
qtr( "Select an action to change the associated hotkey") ); qtr( "Select or double click an action to change the associated hotkey") );
QLabel *searchLabel = new QLabel( qtr( "Search" ) ); QLabel *searchLabel = new QLabel( qtr( "Search" ) );
SearchLineEdit *actionSearch = new SearchLineEdit( keyContainer ); SearchLineEdit *actionSearch = new SearchLineEdit( keyContainer );
...@@ -1385,6 +1385,8 @@ void KeySelectorControl::finish() ...@@ -1385,6 +1385,8 @@ void KeySelectorControl::finish()
QString keys = qfu( p_item->value.psz ); QString keys = qfu( p_item->value.psz );
treeItem->setText( 1, keys ); treeItem->setText( 1, keys );
treeItem->setToolTip( 1, qtr("Double click to change") );
treeItem->setToolTip( 2, qtr("Double click to change") );
treeItem->setData( 1, Qt::UserRole, QVariant( keys ) ); treeItem->setData( 1, Qt::UserRole, QVariant( keys ) );
table->addTopLevelItem( treeItem ); table->addTopLevelItem( treeItem );
continue; continue;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment