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
ed646896
Commit
ed646896
authored
Dec 23, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4 - Small fix to get a smaller size when a video ends.
parent
f38e73af
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
modules/gui/qt4/components/interface_widgets.hpp
modules/gui/qt4/components/interface_widgets.hpp
+5
-4
modules/gui/qt4/main_interface.cpp
modules/gui/qt4/main_interface.cpp
+1
-1
No files found.
modules/gui/qt4/components/interface_widgets.hpp
View file @
ed646896
...
...
@@ -52,17 +52,18 @@ public:
void
*
request
(
vout_thread_t
*
,
int
*
,
int
*
,
unsigned
int
*
,
unsigned
int
*
);
void
release
(
void
*
);
int
control
(
void
*
,
int
,
va_list
);
void
release
(
void
*
);
int
control
(
void
*
,
int
,
va_list
);
private:
intf_thread_t
*
p_intf
;
vlc_mutex_t
lock
;
vout_thread_t
*
p_vout
;
vlc_mutex_t
lock
;
signals:
//void askResize();
void
askVideoWidgetToShow
();
//void askResize();
public
slots
:
void
SetSizing
(
unsigned
int
,
unsigned
int
);
...
...
modules/gui/qt4/main_interface.cpp
View file @
ed646896
...
...
@@ -529,7 +529,7 @@ void MainInterface::debug()
*/
QSize
MainInterface
::
sizeHint
()
const
{
int
nwidth
=
controls
->
size
().
width
();
int
nwidth
=
controls
->
size
Hint
().
width
();
int
nheight
=
controls
->
size
().
height
()
+
menuBar
()
->
size
().
height
()
+
statusBar
()
->
size
().
height
();
...
...
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