Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Gautam Chitnis
web-ui-redesign
Commits
eaf3e693
Commit
eaf3e693
authored
Apr 25, 2007
by
Jean-Baptiste Kempf
Browse files
Qt4 - Dialog size. Hope to fix windows bug.
parent
89a7f21f
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/gui/qt4/dialogs/mediainfo.cpp
View file @
eaf3e693
...
...
@@ -44,6 +44,7 @@ MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf, bool _mainInput ) :
p_input
=
NULL
;
setWindowTitle
(
qtr
(
"Media information"
)
);
resize
(
500
,
450
);
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
IT
=
new
InfoTab
(
this
,
p_intf
,
true
)
;
...
...
@@ -59,7 +60,6 @@ MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf, bool _mainInput ) :
ON_TIMEOUT
(
update
()
);
var_AddCallback
(
THEPL
,
"item-change"
,
ItemChanged
,
this
);
}
readSettings
(
"mediainfo"
,
QSize
(
500
,
450
)
);
}
MediaInfoDialog
::~
MediaInfoDialog
()
...
...
modules/gui/qt4/dialogs/messages.cpp
View file @
eaf3e693
...
...
@@ -39,7 +39,7 @@ MessagesDialog *MessagesDialog::instance = NULL;
MessagesDialog
::
MessagesDialog
(
intf_thread_t
*
_p_intf
)
:
QVLCFrame
(
_p_intf
)
{
setWindowTitle
(
qtr
(
"Messages"
)
);
resize
(
600
,
4
00
);
resize
(
600
,
4
50
);
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
QPushButton
*
closeButton
=
new
QPushButton
(
qtr
(
"&Close"
)
);
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment