Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
c7fb55ac
Commit
c7fb55ac
authored
Dec 29, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: correctly hide everything on MinimalView
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
62dc9260
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
modules/gui/qt4/main_interface.cpp
modules/gui/qt4/main_interface.cpp
+2
-1
modules/gui/qt4/main_interface.hpp
modules/gui/qt4/main_interface.hpp
+2
-0
No files found.
modules/gui/qt4/main_interface.cpp
View file @
c7fb55ac
...
...
@@ -364,7 +364,7 @@ void MainInterface::handleMainUi( QSettings *settings )
settings
->
value
(
"adv-controls"
,
false
).
toBool
(),
this
);
CONNECT
(
controls
,
advancedControlsToggled
(
bool
),
this
,
doComponentsUpdate
()
);
InputControlsWidget
*
inputC
=
new
InputControlsWidget
(
p_intf
,
this
);
inputC
=
new
InputControlsWidget
(
p_intf
,
this
);
/* Add the controls Widget to the main Widget */
mainLayout
->
insertWidget
(
0
,
controls
,
0
,
Qt
::
AlignBottom
);
...
...
@@ -754,6 +754,7 @@ void MainInterface::toggleMinimalView()
TOGGLEV
(
menuBar
()
);
TOGGLEV
(
controls
);
TOGGLEV
(
statusBar
()
);
TOGGLEV
(
inputC
);
doComponentsUpdate
();
}
...
...
modules/gui/qt4/main_interface.hpp
View file @
c7fb55ac
...
...
@@ -44,6 +44,7 @@ class PlaylistWidget;
class
VisualSelector
;
class
AdvControlsWidget
;
class
ControlsWidget
;
class
InputControlsWidget
;
class
FullscreenControllerWidget
;
class
SpeedControlWidget
;
class
QMenu
;
...
...
@@ -104,6 +105,7 @@ private:
QString
input_name
;
QVBoxLayout
*
mainLayout
;
ControlsWidget
*
controls
;
InputControlsWidget
*
inputC
;
FullscreenControllerWidget
*
fullscreenControls
;
void
handleMainUi
(
QSettings
*
);
...
...
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