Browse Source

Set flag `windowAppearsOnTaskbar` on plugin window

pull/1455/head
Jean Pierre Cimalando 3 years ago
parent
commit
99f2d8a2ed
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      source/utils/JucePluginWindow.hpp

+ 1
- 1
source/utils/JucePluginWindow.hpp View File

@@ -106,7 +106,7 @@ protected:


int getDesktopWindowStyleFlags() const override int getDesktopWindowStyleFlags() const override
{ {
return ComponentPeer::windowHasDropShadow | ComponentPeer::windowHasTitleBar | ComponentPeer::windowHasCloseButton;
return ComponentPeer::windowAppearsOnTaskbar | ComponentPeer::windowHasDropShadow | ComponentPeer::windowHasTitleBar | ComponentPeer::windowHasCloseButton;
} }


#ifndef CARLA_OS_LINUX #ifndef CARLA_OS_LINUX


Loading…
Cancel
Save