Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
73d52311
Commit
73d52311
authored
Feb 04, 2010
by
Jean-Philippe André
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Lua dialogs: remove b_hide parameter"
This reverts commit
67875950
.
parent
738ac6e1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
include/vlc_extensions.h
include/vlc_extensions.h
+1
-0
modules/gui/qt4/dialogs/extensions.cpp
modules/gui/qt4/dialogs/extensions.cpp
+2
-1
No files found.
include/vlc_extensions.h
View file @
73d52311
...
...
@@ -195,6 +195,7 @@ 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 @
73d52311
...
...
@@ -112,13 +112,14 @@ ExtensionDialog* ExtensionsDialogProvider::UpdateExtDialog(
if
(
!
p_dialog
->
b_kill
&&
!
dialog
)
{
dialog
=
CreateExtDialog
(
p_dialog
);
dialog
->
setVisible
(
tru
e
);
dialog
->
setVisible
(
!
p_dialog
->
b_hid
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