Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
3c6f6fa7
Commit
3c6f6fa7
authored
Nov 30, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: Remove the gotoPlaying button, as noone understood it.
parent
72ac92a9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
7 deletions
+2
-7
modules/gui/qt4/components/playlist/panels.hpp
modules/gui/qt4/components/playlist/panels.hpp
+1
-1
modules/gui/qt4/components/playlist/standardpanel.cpp
modules/gui/qt4/components/playlist/standardpanel.cpp
+1
-6
No files found.
modules/gui/qt4/components/playlist/panels.hpp
View file @
3c6f6fa7
...
...
@@ -62,7 +62,7 @@ private:
QWidget
*
parent
;
QLabel
*
title
;
QTreeView
*
view
;
QPushButton
*
addButton
,
*
gotoPlayingButton
;
QPushButton
*
addButton
;
int
currentRootId
;
QSignalMapper
*
selectColumnsSigMapper
;
...
...
modules/gui/qt4/components/playlist/standardpanel.cpp
View file @
3c6f6fa7
...
...
@@ -132,12 +132,6 @@ StandardPLPanel::StandardPLPanel( PlaylistWidget *_parent,
BUTTONACT
(
addButton
,
popupAdd
()
);
layout
->
addWidget
(
addButton
,
0
,
2
);
/* Goto */
gotoPlayingButton
=
new
QPushButton
;
BUTTON_SET_ACT_I
(
gotoPlayingButton
,
""
,
buttons
/
playlist
/
jump_to
,
qtr
(
"Show the current item"
),
gotoPlayingItem
()
);
layout
->
addWidget
(
gotoPlayingButton
,
0
,
3
);
/* Finish the layout */
layout
->
addWidget
(
view
,
1
,
0
,
1
,
-
1
);
...
...
@@ -152,6 +146,7 @@ StandardPLPanel::~StandardPLPanel()
getSettings
()
->
endGroup
();
}
/* Unused anymore, but might be useful, like in right-click menu */
void
StandardPLPanel
::
gotoPlayingItem
()
{
view
->
scrollTo
(
model
->
currentIndex
()
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment