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
240cb64b
Commit
240cb64b
authored
Jan 07, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: put the Fullscreen Controller back on 2 lines.
parent
e20c56d5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
modules/gui/qt4/components/controller.cpp
modules/gui/qt4/components/controller.cpp
+5
-3
No files found.
modules/gui/qt4/components/controller.cpp
View file @
240cb64b
...
...
@@ -809,12 +809,12 @@ FullscreenControllerWidget::FullscreenControllerWidget( intf_thread_t *_p_i )
setFrameStyle
(
QFrame
::
Sunken
);
setSizePolicy
(
QSizePolicy
::
Minimum
,
QSizePolicy
::
Minimum
);
controlLayout
=
new
QH
BoxLayout
(
this
);
controlLayout
->
setLayoutMargins
(
5
,
2
,
5
,
2
,
5
);
QVBoxLayout
*
controlLayout2
=
new
QV
BoxLayout
(
this
);
controlLayout
2
->
setLayoutMargins
(
5
,
2
,
5
,
2
,
5
);
/* First line */
InputControlsWidget
*
inputC
=
new
InputControlsWidget
(
p_intf
,
this
);
controlLayout
->
addWidget
(
inputC
);
controlLayout
2
->
addWidget
(
inputC
);
/* Second line */
/* QString line = QString( "%1-2;%2;%3;%4;%5;%2;%6;%2;%7;%2;%8;%9;%10-4")
...
...
@@ -830,9 +830,11 @@ FullscreenControllerWidget::FullscreenControllerWidget( intf_thread_t *_p_i )
.arg( TIME_LABEL )
.arg( VOLUME ); */
controlLayout
=
new
QHBoxLayout
;
QString
line
=
getSettings
()
->
value
(
"MainWindow/FSCtoolbar"
,
"0-2;64;3;1;4;64;36;64;37;64;8;65;35-4;34"
).
toString
();
parseAndCreate
(
line
,
controlLayout
);
controlLayout2
->
addLayout
(
controlLayout
);
/* hiding timer */
p_hideTimer
=
new
QTimer
(
this
);
...
...
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