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
1a8bfb0d
Commit
1a8bfb0d
authored
Apr 23, 2013
by
Sandeep Kumar
Committed by
Jean-Baptiste Kempf
Apr 23, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: Make fullscreen bar thinner in one line interface profile.
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
8090cafa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
4 deletions
+1
-4
modules/gui/qt4/components/controller.cpp
modules/gui/qt4/components/controller.cpp
+1
-2
modules/gui/qt4/components/controller.hpp
modules/gui/qt4/components/controller.hpp
+0
-2
No files found.
modules/gui/qt4/components/controller.cpp
View file @
1a8bfb0d
...
...
@@ -740,7 +740,6 @@ FullscreenControllerWidget::FullscreenControllerWidget( intf_thread_t *_p_i, QWi
setWindowFlags
(
Qt
::
ToolTip
);
setMinimumWidth
(
FSC_WIDTH
);
setMinimumHeight
(
FSC_HEIGHT
);
isWideFSC
=
false
;
setFrameShape
(
QFrame
::
StyledPanel
);
...
...
@@ -908,7 +907,7 @@ void FullscreenControllerWidget::updateFullwidthGeometry( int number )
{
QRect
screenGeometry
=
QApplication
::
desktop
()
->
screenGeometry
(
number
);
setMinimumWidth
(
screenGeometry
.
width
()
);
setGeometry
(
screenGeometry
.
x
(),
screenGeometry
.
y
()
+
screenGeometry
.
height
()
-
FSC_HEIGHT
,
screenGeometry
.
width
(),
FSC_HEIGHT
);
setGeometry
(
screenGeometry
.
x
(),
screenGeometry
.
y
()
+
screenGeometry
.
height
()
-
height
(),
screenGeometry
.
width
(),
height
()
);
adjustSize
();
}
...
...
modules/gui/qt4/components/controller.hpp
View file @
1a8bfb0d
...
...
@@ -249,8 +249,6 @@ signals:
/* Used to restore the minimum width after a full-width switch */
#define FSC_WIDTH 800
#define FSC_HEIGHT 72
/***********************************
* Fullscreen controller
***********************************/
...
...
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