some pushaddcolor's and improve grooves
This commit is contained in:
parent
9e405e86fa
commit
0dbe1b401f
2 changed files with 15 additions and 2 deletions
|
|
@ -253,6 +253,7 @@ void FurnaceGUI::drawInsList(bool asChild) {
|
|||
}
|
||||
if (began) {
|
||||
if (settings.unifiedDataView) settings.horizontalDataView=0;
|
||||
pushAddColor();
|
||||
if (ImGui::Button(ICON_FA_PLUS "##InsAdd")) {
|
||||
if (settings.unifiedDataView) {
|
||||
switch (lastAssetType) {
|
||||
|
|
@ -270,6 +271,7 @@ void FurnaceGUI::drawInsList(bool asChild) {
|
|||
doAction(GUI_ACTION_INS_LIST_ADD);
|
||||
}
|
||||
}
|
||||
popAddColor();
|
||||
if (ImGui::IsItemHovered()) {
|
||||
ImGui::SetTooltip("Add");
|
||||
}
|
||||
|
|
@ -657,9 +659,11 @@ void FurnaceGUI::drawWaveList(bool asChild) {
|
|||
began=ImGui::Begin("Wavetables",&waveListOpen,globalWinFlags);
|
||||
}
|
||||
if (began) {
|
||||
pushAddColor();
|
||||
if (ImGui::Button(ICON_FA_PLUS "##WaveAdd")) {
|
||||
doAction(GUI_ACTION_WAVE_LIST_ADD);
|
||||
}
|
||||
popAddColor();
|
||||
if (ImGui::IsItemHovered()) {
|
||||
ImGui::SetTooltip("Add");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue