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
975984c0
Commit
975984c0
authored
Aug 24, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix annoying bug that prevented Bookmark dialog to be shown at first time.
Fix by J-Peg.
parent
27eb5342
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/gui/qt4/dialogs/bookmarks.cpp
modules/gui/qt4/dialogs/bookmarks.cpp
+1
-1
modules/gui/qt4/util/qvlcframe.hpp
modules/gui/qt4/util/qvlcframe.hpp
+1
-1
No files found.
modules/gui/qt4/dialogs/bookmarks.cpp
View file @
975984c0
...
...
@@ -93,7 +93,7 @@ BookmarksDialog::BookmarksDialog( intf_thread_t *_p_intf ):QVLCFrame( _p_intf )
#endif
BUTTONACT
(
closeButton
,
close
()
);
readSettings
(
"Bookmarks"
);
readSettings
(
"Bookmarks"
,
QSize
(
435
,
206
)
);
updateGeometry
();
}
...
...
modules/gui/qt4/util/qvlcframe.hpp
View file @
975984c0
...
...
@@ -134,7 +134,7 @@ protected:
intf_thread_t
*
p_intf
;
void
readSettings
(
QString
name
,
QSize
defSize
=
QSize
(
0
,
0
),
QSize
defSize
=
QSize
(
1
,
1
),
QPoint
defPos
=
QPoint
(
0
,
0
)
)
{
QVLCTools
::
restoreWidgetPosition
(
p_intf
,
name
,
this
,
defSize
,
defPos
);
...
...
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