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
e9d699e4
Commit
e9d699e4
authored
Jan 16, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: change dialog size.
parent
f60496a6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
modules/gui/qt4/dialogs/bookmarks.cpp
modules/gui/qt4/dialogs/bookmarks.cpp
+1
-1
modules/gui/qt4/dialogs/plugins.cpp
modules/gui/qt4/dialogs/plugins.cpp
+1
-1
modules/gui/qt4/dialogs/vlm.cpp
modules/gui/qt4/dialogs/vlm.cpp
+2
-0
No files found.
modules/gui/qt4/dialogs/bookmarks.cpp
View file @
e9d699e4
...
...
@@ -96,7 +96,7 @@ BookmarksDialog::BookmarksDialog( intf_thread_t *_p_intf ):QVLCFrame( _p_intf )
#endif
BUTTONACT
(
closeButton
,
close
()
);
readSettings
(
"Bookmarks"
,
QSize
(
435
,
2
06
)
);
readSettings
(
"Bookmarks"
,
QSize
(
435
,
2
80
)
);
updateGeometry
();
}
...
...
modules/gui/qt4/dialogs/plugins.cpp
View file @
e9d699e4
...
...
@@ -87,7 +87,7 @@ PluginDialog::PluginDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
BUTTONACT
(
okButton
,
close
()
);
setMinimumSize
(
500
,
300
);
readSettings
(
"Plugins"
,
QSize
(
5
00
,
3
00
)
);
readSettings
(
"Plugins"
,
QSize
(
5
40
,
4
00
)
);
}
inline
void
PluginDialog
::
FillTree
()
...
...
modules/gui/qt4/dialogs/vlm.cpp
View file @
e9d699e4
...
...
@@ -157,12 +157,14 @@ VLMDialog::VLMDialog( QWidget *parent, intf_thread_t *_p_intf ) : QVLCDialog( pa
BUTTONACT
(
ui
.
saveButton
,
saveModifications
()
);
BUTTONACT
(
ui
.
inputButton
,
selectInput
()
);
BUTTONACT
(
ui
.
outputButton
,
selectOutput
()
);
//readSettings( "VLM", QSize( 700, 500 ) );
}
VLMDialog
::~
VLMDialog
()
{
delete
vlmWrapper
;
//writeSettings( "VLM" );
/* TODO :you have to destroy vlm here to close
* but we shouldn't destroy vlm here in case somebody else wants it */
if
(
p_vlm
)
...
...
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