fixup! Allow GUI2 dialogs to disable the default dialog plugins context
This commit is contained in:
parent
1923b6598d
commit
5b806d4f66
1 changed files with 5 additions and 1 deletions
|
@ -35,7 +35,11 @@ tdialog::~tdialog()
|
|||
|
||||
bool tdialog::show(CVideo& video, const unsigned auto_close_time)
|
||||
{
|
||||
if(allow_plugin_skip_ && video.faked()) {
|
||||
if(video.faked()) {
|
||||
if(!allow_plugin_skip_) {
|
||||
return false;
|
||||
}
|
||||
|
||||
plugins_manager* pm = plugins_manager::get();
|
||||
if (pm && pm->any_running())
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue