zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

commit 0532b699ba74c29930137e62dbe787bb4a241b06
parent c84b301765a5eef031c03294879444850f7e3234
Author: Wladimir J. van der Laan <[email protected]>
Date:   Sun, 20 Jul 2014 15:04:05 +0200

BankSlot: add necessary redraw command

With NTK, slots in the instrument editor were not being redrawn
after selecting a new bank.

Diffstat:
Msrc/UI/BankView.cpp | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/UI/BankView.cpp b/src/UI/BankView.cpp @@ -80,6 +80,9 @@ void BankSlot::update(const char *name__, const char *fname__) label(labelstr); color(empty() ? 46 : 51); +#ifdef NTK_GUI + redraw(); +#endif } bool BankSlot::empty(void) const