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
4e5dff5a
Commit
4e5dff5a
authored
Mar 04, 2010
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: do "normal->loopall->loop1->normal" instead of "normal->loop1->loopall->normal"
And fix logic
parent
47da002c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
modules/gui/qt4/components/controller_widget.cpp
modules/gui/qt4/components/controller_widget.cpp
+2
-2
modules/gui/qt4/input_manager.cpp
modules/gui/qt4/input_manager.cpp
+2
-2
No files found.
modules/gui/qt4/components/controller_widget.cpp
View file @
4e5dff5a
...
...
@@ -258,6 +258,6 @@ void AtoB_Button::setIcons( bool timeA, bool timeB )
void
LoopButton
::
updateIcons
(
int
value
)
{
setChecked
(
value
!=
NORMAL
);
setIcon
(
(
value
==
REPEAT_
ALL
)
?
QIcon
(
":/buttons/playlist/repeat_all
"
)
:
QIcon
(
":/buttons/playlist/repeat_
one
"
)
);
setIcon
(
(
value
==
REPEAT_
ONE
)
?
QIcon
(
":/buttons/playlist/repeat_one
"
)
:
QIcon
(
":/buttons/playlist/repeat_
all
"
)
);
}
modules/gui/qt4/input_manager.cpp
View file @
4e5dff5a
...
...
@@ -1103,8 +1103,8 @@ void MainInputManager::toggleRandom()
void
MainInputManager
::
notifyRepeatLoop
()
{
int
i_value
=
var_GetBool
(
THEPL
,
"loop"
)
*
REPEAT_
ONE
+
var_GetBool
(
THEPL
,
"repeat"
)
*
REPEAT_
ALL
;
int
i_value
=
var_GetBool
(
THEPL
,
"loop"
)
*
REPEAT_
ALL
+
var_GetBool
(
THEPL
,
"repeat"
)
*
REPEAT_
ONE
;
emit
repeatLoopChanged
(
i_value
);
}
...
...
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