Commit 09fc199d authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Qt: update mouse wheel simple preferences (refs #5883)

parent aa958337
......@@ -909,7 +909,15 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
line++;
p_config = config_FindConfig( VLC_OBJECT(p_intf), "hotkeys-mousewheel-mode" );
p_config = config_FindConfig( VLC_OBJECT(p_intf), "hotkeys-y-wheel-mode" );
control = new IntegerListConfigControl( VLC_OBJECT(p_intf),
p_config, this, false );
control->insertIntoExistingGrid( gLayout, line );
controls.append( control );
line++;
p_config = config_FindConfig( VLC_OBJECT(p_intf), "hotkeys-x-wheel-mode" );
control = new IntegerListConfigControl( VLC_OBJECT(p_intf),
p_config, this, false );
control->insertIntoExistingGrid( gLayout, line );
......
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