We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 683e58b commit ddea353Copy full SHA for ddea353
Source/MainFrm.cpp
@@ -954,12 +954,17 @@ void CMainFrame::NewInstrument(int ChipType)
954
955
void CMainFrame::UpdateInstrumentList()
956
{
957
+ // Avoid visible flickering when updating
958
+ m_pInstrumentList->SetRedraw(FALSE);
959
+
960
// Rewrite the instrument list
961
ClearInstrumentList();
962
963
for (int i = 0; i < MAX_INSTRUMENTS; ++i) {
964
m_pInstrumentList->InsertInstrument(i);
965
}
966
967
+ m_pInstrumentList->SetRedraw(TRUE);
968
969
970
void CMainFrame::SelectInstrument(int Index)
0 commit comments