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
31a9a4a4
Commit
31a9a4a4
authored
Mar 10, 2008
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a race condition : the user progress dialog wasn't created sometime with the Qt interface.
parent
7ad41423
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
modules/gui/qt4/dialogs_provider.cpp
modules/gui/qt4/dialogs_provider.cpp
+11
-0
No files found.
modules/gui/qt4/dialogs_provider.cpp
View file @
31a9a4a4
...
...
@@ -501,6 +501,17 @@ void DialogsProvider::doInteraction( intf_dialog_args_t *p_arg )
qdialog
=
(
InteractionDialog
*
)(
p_dialog
->
p_private
);
if
(
qdialog
)
qdialog
->
update
();
else
{
/* The INTERACT_NEW message was forgotten
so we must create the dialog and update it*/
qdialog
=
new
InteractionDialog
(
p_intf
,
p_dialog
);
p_dialog
->
p_private
=
(
void
*
)
qdialog
;
if
(
!
(
p_dialog
->
i_status
==
ANSWERED_DIALOG
)
)
qdialog
->
show
();
if
(
qdialog
)
qdialog
->
update
();
}
break
;
case
INTERACT_HIDE
:
qdialog
=
(
InteractionDialog
*
)(
p_dialog
->
p_private
);
...
...
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