Browse Source

Make Dexed CartMgr a regular component, fixes black frame on desktop

tags/2018-04-16
falkTX 9 years ago
parent
commit
5345883850
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      ports/dexed/source/CartManager.cpp
  2. +1
    -1
      ports/dexed/source/CartManager.h

+ 1
- 1
ports/dexed/source/CartManager.cpp View File

@@ -38,7 +38,7 @@ public:
};
};
CartManager::CartManager(DexedAudioProcessorEditor *editor) : TopLevelWindow("CartManager", false) {
CartManager::CartManager(DexedAudioProcessorEditor *editor) : Component("CartManager") {
mainWindow = editor;
cartDir = DexedAudioProcessor::dexedCartDir;


+ 1
- 1
ports/dexed/source/CartManager.h View File

@@ -25,7 +25,7 @@
#include "PluginData.h"
#include "ProgramListBox.h"
class CartManager : public TopLevelWindow, public ButtonListener, public DragAndDropContainer, public FileBrowserListener
class CartManager : public Component, public ButtonListener, public DragAndDropContainer, public FileBrowserListener
, public ProgramListBoxListener {
ScopedPointer<TextButton> newButton;
ScopedPointer<TextButton> loadButton;


Loading…
Cancel
Save