Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
9eed4949
Commit
9eed4949
authored
Aug 02, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qt4 - Playlist: move the column selection to a submenu.
parent
4c813447
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
19 deletions
+21
-19
modules/gui/qt4/playlist_model.cpp
modules/gui/qt4/playlist_model.cpp
+21
-19
No files found.
modules/gui/qt4/playlist_model.cpp
View file @
9eed4949
...
...
@@ -959,8 +959,10 @@ void PLModel::popup( QModelIndex & index, QPoint &point, QModelIndexList list )
ContextUpdateMapper
=
new
QSignalMapper
(
this
);
QMenu
*
selectColMenu
=
new
QMenu
(
qtr
(
"Show columns"
)
);
#define ADD_META_ACTION( meta ) { \
QAction* option =
menu->addAction( qfu(VLC_META_##meta) );
\
QAction* option =
selectColMenu->addAction( qfu(VLC_META_##meta) );
\
option->setCheckable( true ); \
option->setChecked( rootItem->i_showflags & VLC_META_ENGINE_##meta ); \
ContextUpdateMapper->setMapping( option, VLC_META_ENGINE_##meta ); \
...
...
@@ -978,7 +980,7 @@ void PLModel::popup( QModelIndex & index, QPoint &point, QModelIndexList list )
ADD_META_ACTION
(
DESCRIPTION
);
#undef ADD_META_ACTION
menu
->
addMenu
(
selectColMenu
);
menu
->
popup
(
point
);
}
else
...
...
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