Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
5b41c888
Commit
5b41c888
authored
Dec 10, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4 - minwidth of dropdown inside settings dialogs, patch by André Weber
parent
c8a09ea6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
modules/gui/qt4/components/preferences_widgets.cpp
modules/gui/qt4/components/preferences_widgets.cpp
+5
-1
modules/gui/qt4/dialogs/preferences.cpp
modules/gui/qt4/dialogs/preferences.cpp
+0
-1
No files found.
modules/gui/qt4/components/preferences_widgets.cpp
View file @
5b41c888
...
...
@@ -354,6 +354,7 @@ StringListConfigControl::StringListConfigControl( vlc_object_t *_p_this,
{
label
=
new
QLabel
(
qtr
(
p_item
->
psz_text
)
);
combo
=
new
QComboBox
();
combo
->
setMinimumWidth
(
80
);
finish
(
bycat
);
if
(
!
l
)
{
...
...
@@ -464,6 +465,7 @@ ModuleConfigControl::ModuleConfigControl( vlc_object_t *_p_this,
{
label
=
new
QLabel
(
qtr
(
p_item
->
psz_text
)
);
combo
=
new
QComboBox
();
combo
->
setMinimumWidth
(
80
);
finish
(
bycat
);
if
(
!
l
)
{
...
...
@@ -797,6 +799,7 @@ IntegerListConfigControl::IntegerListConfigControl( vlc_object_t *_p_this,
{
label
=
new
QLabel
(
qtr
(
p_item
->
psz_text
)
);
combo
=
new
QComboBox
();
combo
->
setMinimumWidth
(
80
);
finish
(
bycat
);
if
(
!
l
)
{
...
...
@@ -896,7 +899,8 @@ FloatConfigControl::FloatConfigControl( vlc_object_t *_p_this,
VFloatConfigControl
(
_p_this
,
_p_item
,
_parent
)
{
label
=
new
QLabel
(
qtr
(
p_item
->
psz_text
)
);
spin
=
new
QDoubleSpinBox
;
spin
->
setMinimumWidth
(
80
);
spin
=
new
QDoubleSpinBox
;
spin
->
setMinimumWidth
(
80
);
spin
->
setMaximumWidth
(
90
);
spin
->
setAlignment
(
Qt
::
AlignRight
);
finish
();
...
...
modules/gui/qt4/dialogs/preferences.cpp
View file @
5b41c888
...
...
@@ -35,7 +35,6 @@
#include <QVBoxLayout>
#include <QPushButton>
#include <QCheckBox>
#include <QScrollArea>
#include <QMessageBox>
#include <QDialogButtonBox>
...
...
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