Commit 33299a4d authored by Ludovic Fauvet's avatar Ludovic Fauvet Committed by Jean-Baptiste Kempf

qt4: never disable the "Jump to specific time" menu entry (fixes #6669)

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 99e82ba6
......@@ -882,8 +882,10 @@ void VLCMenuBar::PopupMenuControlEntries( QMenu *menu, intf_thread_t *p_intf,
action->setIcon( QIcon( ":/toolbar/skip_back") );
#endif
action->setData( ACTION_STATIC );
addDPStaticEntry( menu, qtr( I_MENU_GOTOTIME ),"",
SLOT( gotoTimeDialog() ), "Ctrl+T" );
action = menu->addAction( qtr( I_MENU_GOTOTIME ), THEDP, SLOT( gotoTimeDialog() ), qtr( "Ctrl+T" ) );
action->setData( ACTION_ALWAYS_ENABLED );
menu->addSeparator();
}
......
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