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
dace7276
Commit
dace7276
authored
Feb 26, 2008
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a little bug with the sorting in the interface
parent
bc4789a0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/gui/qt4/components/playlist/playlist_model.cpp
modules/gui/qt4/components/playlist/playlist_model.cpp
+2
-2
No files found.
modules/gui/qt4/components/playlist/playlist_model.cpp
View file @
dace7276
...
...
@@ -724,8 +724,8 @@ void PLModel::sort( int column, Qt::SortOrder order )
switch
(
column
)
{
case
0
:
i_mode
=
SORT_TITLE_NODES_FIRST
;
break
;
case
1
:
i_mode
=
SORT_
ARTIST
;
break
;
case
2
:
i_mode
=
SORT_
DURATION
;
break
;
case
1
:
i_mode
=
SORT_
DURATION
;
break
;
case
2
:
i_mode
=
SORT_
ARTIST
;
break
;
default:
i_mode
=
SORT_TITLE_NODES_FIRST
;
break
;
}
if
(
p_root
)
...
...
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