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
67875950
Commit
67875950
authored
Feb 03, 2010
by
Jean-Philippe André
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Lua dialogs: remove b_hide parameter
Widgets can still be hidden though
parent
67d36fd7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
3 deletions
+1
-3
include/vlc_extensions.h
include/vlc_extensions.h
+0
-1
modules/gui/qt4/dialogs/extensions.cpp
modules/gui/qt4/dialogs/extensions.cpp
+1
-2
No files found.
include/vlc_extensions.h
View file @
67875950
...
...
@@ -195,7 +195,6 @@ struct extension_dialog_t
DECL_ARRAY
(
extension_widget_t
*
)
widgets
;
///< Widgets owned by the dialog
bool
b_hide
;
///< Hide this dialog (!b_hide shows)
bool
b_kill
;
///< Kill this dialog
void
*
p_sys
;
///< Dialog private pointer
...
...
modules/gui/qt4/dialogs/extensions.cpp
View file @
67875950
...
...
@@ -110,14 +110,13 @@ ExtensionDialog* ExtensionsDialogProvider::UpdateExtDialog(
if
(
!
p_dialog
->
b_kill
&&
!
dialog
)
{
dialog
=
CreateExtDialog
(
p_dialog
);
dialog
->
setVisible
(
!
p_dialog
->
b_hid
e
);
dialog
->
setVisible
(
tru
e
);
}
else
if
(
!
p_dialog
->
b_kill
&&
dialog
)
{
dialog
->
has_lock
=
true
;
dialog
->
UpdateWidgets
();
dialog
->
has_lock
=
false
;
dialog
->
setVisible
(
!
p_dialog
->
b_hide
);
}
else
if
(
p_dialog
->
b_kill
)
{
...
...
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