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
5aad31ca
Commit
5aad31ca
authored
Dec 16, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4 - Make the default interface smaller.
parent
b6a1348f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
modules/gui/qt4/components/interface_widgets.cpp
modules/gui/qt4/components/interface_widgets.cpp
+2
-0
modules/gui/qt4/main_interface.cpp
modules/gui/qt4/main_interface.cpp
+2
-0
No files found.
modules/gui/qt4/components/interface_widgets.cpp
View file @
5aad31ca
...
...
@@ -505,6 +505,7 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i,
controlLayout
->
setColumnStretch
(
7
,
0
);
controlLayout
->
setColumnStretch
(
8
,
0
);
controlLayout
->
setColumnStretch
(
9
,
0
);
/*
* Other first Line buttons
*/
...
...
@@ -529,6 +530,7 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i,
controlLayout
->
addWidget
(
extSettingsButton
,
3
,
12
,
Qt
::
AlignBottom
);
controlLayout
->
setColumnStretch
(
13
,
0
);
controlLayout
->
setColumnMinimumWidth
(
13
,
24
);
controlLayout
->
setColumnStretch
(
14
,
5
);
/* Volume */
...
...
modules/gui/qt4/main_interface.cpp
View file @
5aad31ca
...
...
@@ -286,6 +286,7 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
CONNECT
(
controls
,
advancedControlsToggled
(
bool
),
this
,
doComponentsUpdate
()
);
resize
(
settings
->
value
(
"size"
,
QSize
(
300
,
80
)
).
toSize
()
);
updateGeometry
();
settings
->
endGroup
();
}
...
...
@@ -301,6 +302,7 @@ MainInterface::~MainInterface()
settings
->
setValue
(
"adv-controls"
,
getControlsVisibilityStatus
()
&
CONTROLS_ADVANCED
);
settings
->
setValue
(
"pos"
,
pos
()
);
settings
->
setValue
(
"size"
,
size
()
);
settings
->
endGroup
();
delete
settings
;
...
...
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