Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
e2714b9c
Commit
e2714b9c
authored
Mar 13, 2008
by
Jean-Baptiste Kempf
Browse files
Fix a layout issue, and adds space left of reset button.
parent
2067e26a
Changes
1
Show whitespace changes
Inline
Side-by-side
modules/gui/qt4/dialogs/preferences.cpp
View file @
e2714b9c
...
...
@@ -87,12 +87,14 @@ PrefsDialog::PrefsDialog( QWidget *parent, intf_thread_t *_p_intf )
/* Layout */
main_layout
->
addWidget
(
tree_panel
,
0
,
0
,
3
,
1
);
main_layout
->
addWidget
(
types
,
3
,
0
,
2
,
1
);
main_layout
->
addWidget
(
main_panel
,
0
,
1
,
4
,
1
);
main_layout
->
addWidget
(
buttonsBox
,
4
,
1
,
1
,
2
);
main_layout
->
addWidget
(
main_panel
,
0
,
1
,
4
,
2
);
main_layout
->
addWidget
(
buttonsBox
,
4
,
2
,
1
,
1
);
main_layout
->
setColumnMinimumWidth
(
0
,
150
);
main_layout
->
setColumnMinimumWidth
(
1
,
10
);
main_layout
->
setColumnStretch
(
0
,
1
);
main_layout
->
setColumnStretch
(
1
,
3
);
main_layout
->
setColumnStretch
(
1
,
0
);
main_layout
->
setColumnStretch
(
2
,
3
);
main_layout
->
setRowStretch
(
2
,
4
);
...
...
Write
Preview
Supports
Markdown
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