Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
175d1beb
Commit
175d1beb
authored
Aug 01, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the activation or not of advanced buttons in fullscreen controller
parent
132030ac
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
modules/gui/qt4/components/interface_widgets.cpp
modules/gui/qt4/components/interface_widgets.cpp
+3
-1
modules/gui/qt4/main_interface.cpp
modules/gui/qt4/main_interface.cpp
+1
-0
No files found.
modules/gui/qt4/components/interface_widgets.cpp
View file @
175d1beb
...
...
@@ -889,7 +889,7 @@ void ControlsWidget::enableVideo( bool enable )
void
ControlsWidget
::
toggleAdvanced
()
{
if
(
!
VISIBLE
(
advControls
)
)
if
(
advControls
&&
!
b_advancedVisible
)
{
advControls
->
show
();
b_advancedVisible
=
true
;
...
...
@@ -961,6 +961,7 @@ FullscreenControllerWidget::FullscreenControllerWidget( intf_thread_t *_p_i,
#ifdef WIN32TRICK
setWindowOpacity
(
0.0
);
fscHidden
=
true
;
adjustSize
();
show
();
#endif
...
...
@@ -977,6 +978,7 @@ FullscreenControllerWidget::~FullscreenControllerWidget()
*/
void
FullscreenControllerWidget
::
showFSC
()
{
adjustSize
();
#ifdef WIN32TRICK
// after quiting and going to fs, we need to call show()
if
(
isHidden
()
)
...
...
modules/gui/qt4/main_interface.cpp
View file @
175d1beb
...
...
@@ -832,6 +832,7 @@ void MainInterface::doComponentsUpdate()
void
MainInterface
::
toggleAdvanced
()
{
controls
->
toggleAdvanced
();
fullscreenControls
->
toggleAdvanced
();
}
/* Get the visibility status of the controls (hidden or not, advanced or not) */
...
...
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