Virtual Boy: envelope bug status
This commit is contained in:
parent
7fbe9c01a5
commit
38e4245ee0
13 changed files with 62 additions and 1 deletions
|
|
@ -434,6 +434,8 @@ enum FurnaceGUIColors {
|
|||
GUI_COLOR_PATTERN_STATUS_INC,
|
||||
GUI_COLOR_PATTERN_STATUS_BENT,
|
||||
GUI_COLOR_PATTERN_STATUS_DIRECT,
|
||||
GUI_COLOR_PATTERN_STATUS_WARNING,
|
||||
GUI_COLOR_PATTERN_STATUS_ERROR,
|
||||
GUI_COLOR_PATTERN_PAIR,
|
||||
|
||||
GUI_COLOR_SAMPLE_BG,
|
||||
|
|
|
|||
|
|
@ -1134,6 +1134,8 @@ const FurnaceGUIColorDef guiColors[GUI_COLOR_MAX]={
|
|||
D(GUI_COLOR_PATTERN_STATUS_INC,"",ImVec4(0.1f,0.1f,1.0f,1.0f)),
|
||||
D(GUI_COLOR_PATTERN_STATUS_BENT,"",ImVec4(1.0f,1.0f,0.1f,1.0f)),
|
||||
D(GUI_COLOR_PATTERN_STATUS_DIRECT,"",ImVec4(1.0f,0.5f,0.2f,1.0f)),
|
||||
D(GUI_COLOR_PATTERN_STATUS_WARNING,"",ImVec4(0.98f,0.98f,0.06f,1.0f)),
|
||||
D(GUI_COLOR_PATTERN_STATUS_ERROR,"",ImVec4(0.98f,0.06f,0.06f,1.0f)),
|
||||
|
||||
D(GUI_COLOR_PATTERN_PAIR,"",ImVec4(0.6f,0.8f,1.0f,1.0f)),
|
||||
|
||||
|
|
|
|||
|
|
@ -1138,6 +1138,12 @@ void FurnaceGUI::drawPattern() {
|
|||
case 20:
|
||||
hintColor=uiColors[GUI_COLOR_PATTERN_STATUS_DIRECT];
|
||||
break;
|
||||
case 21:
|
||||
hintColor=uiColors[GUI_COLOR_PATTERN_STATUS_WARNING];
|
||||
break;
|
||||
case 22:
|
||||
hintColor=uiColors[GUI_COLOR_PATTERN_STATUS_ERROR];
|
||||
break;
|
||||
default:
|
||||
hintColor=uiColors[GUI_COLOR_TEXT];
|
||||
break;
|
||||
|
|
|
|||
|
|
@ -4312,6 +4312,8 @@ void FurnaceGUI::drawSettings() {
|
|||
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_INC,_("Status: increase"));
|
||||
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_BENT,_("Status: bent"));
|
||||
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_DIRECT,_("Status: direct"));
|
||||
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_WARNING,_("Status: warning"));
|
||||
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_ERROR,_("Status: error"));
|
||||
ImGui::TreePop();
|
||||
}
|
||||
if (ImGui::TreeNode(_("Sample Editor"))) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue