Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
450
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
fe65deaa
Commit
fe65deaa
authored
14 years ago
by
François Cartegnie
Committed by
Jean-Baptiste Kempf
14 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Qt: use dyn layout for messages
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
5c331b20
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/gui/qt4/dialogs/messages.cpp
+3
-3
3 additions, 3 deletions
modules/gui/qt4/dialogs/messages.cpp
with
3 additions
and
3 deletions
modules/gui/qt4/dialogs/messages.cpp
+
3
−
3
View file @
fe65deaa
...
...
@@ -118,19 +118,19 @@ MessagesDialog::MessagesDialog( intf_thread_t *_p_intf)
verbosityBox
->
setRange
(
0
,
2
);
verbosityBox
->
setValue
(
var_InheritInteger
(
p_intf
,
"verbose"
)
);
verbosityBox
->
setWrapping
(
true
);
verbosityBox
->
set
MaximumWidth
(
50
);
verbosityBox
->
set
SizePolicy
(
QSizePolicy
::
Maximum
,
QSizePolicy
::
Fixed
);
verbosityLabel
=
new
QLabel
(
qtr
(
"Verbosity Level"
)
);
vbobjectsEdit
=
new
QLineEdit
();
vbobjectsEdit
->
set
MaximumWidth
(
100
);
vbobjectsEdit
->
set
SizePolicy
(
QSizePolicy
::
Minimum
,
QSizePolicy
::
Fixed
);
vbobjectsEdit
->
setText
(
config_GetPsz
(
p_intf
,
"verbose-objects"
));
vbobjectsEdit
->
setToolTip
(
"verbose-objects usage:
\n
"
"--verbose-objects=+printthatobject,-dontprintthatone
\n
"
"(keyword 'all' to applies to all objects)"
);
vbobjectsLabel
=
new
QLabel
(
qtr
(
"
Message f
ilter"
)
);
vbobjectsLabel
=
new
QLabel
(
qtr
(
"
F
ilter
:
"
)
);
mainLayout
->
addWidget
(
mainTab
,
0
,
0
,
1
,
0
);
mainLayout
->
addWidget
(
verbosityLabel
,
1
,
0
,
1
,
1
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment