Skip to content

Commit

Permalink
Make Dexed CartMgr a regular component, fixes black frame on desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
falkTX committed Jul 18, 2015
1 parent fdd2566 commit 5345883
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ports/dexed/source/CartManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class SyxFileFilter : public FileFilter {
};
};

CartManager::CartManager(DexedAudioProcessorEditor *editor) : TopLevelWindow("CartManager", false) {
CartManager::CartManager(DexedAudioProcessorEditor *editor) : Component("CartManager") {

mainWindow = editor;
cartDir = DexedAudioProcessor::dexedCartDir;
Expand Down
2 changes: 1 addition & 1 deletion ports/dexed/source/CartManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 5345883

Please sign in to comment.