Browse Source

Fix build

tags/1.9.5
falkTX 10 years ago
parent
commit
9b5b6417fc
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      source/bridges-ui/CarlaBridgeToolkitPlugin.cpp

+ 5
- 1
source/bridges-ui/CarlaBridgeToolkitPlugin.cpp View File

@@ -52,7 +52,7 @@ public:
#elif defined(CARLA_OS_WIN) && defined(BRIDGE_HWND) #elif defined(CARLA_OS_WIN) && defined(BRIDGE_HWND)
fUI = CarlaPluginUI::newWindows(this, 0); fUI = CarlaPluginUI::newWindows(this, 0);
#elif defined(HAVE_X11) && defined(BRIDGE_X11) #elif defined(HAVE_X11) && defined(BRIDGE_X11)
fUI = CarlaPluginUI::newX11(this, 0);
fUI = CarlaPluginUI::newX11(this, 0, false); // TODO: check if UI is resizable
#endif #endif
CARLA_SAFE_ASSERT_RETURN(fUI != nullptr,); CARLA_SAFE_ASSERT_RETURN(fUI != nullptr,);


@@ -141,6 +141,10 @@ protected:
fIdling = false; fIdling = false;
} }


void handlePluginUIResized(uint,uint) override
{
}

// --------------------------------------------------------------------- // ---------------------------------------------------------------------


private: private:


Loading…
Cancel
Save