happens to the best of us
This commit is contained in:
parent
4a0642df66
commit
a7b0034b4c
|
@ -474,12 +474,14 @@ void FurnaceGUI::drawSettings() {
|
||||||
ImGui::Indent();
|
ImGui::Indent();
|
||||||
if (ImGui::RadioButton("ImGui line plot",settings.shaderOsc==0)) {
|
if (ImGui::RadioButton("ImGui line plot",settings.shaderOsc==0)) {
|
||||||
settings.shaderOsc=0;
|
settings.shaderOsc=0;
|
||||||
|
settingsChanged=true;
|
||||||
}
|
}
|
||||||
if (ImGui::IsItemHovered()) {
|
if (ImGui::IsItemHovered()) {
|
||||||
ImGui::SetTooltip("render using Dear ImGui's built-in line drawing functions.");
|
ImGui::SetTooltip("render using Dear ImGui's built-in line drawing functions.");
|
||||||
}
|
}
|
||||||
if (ImGui::RadioButton("GLSL/HLSL (if available)",settings.shaderOsc==1)) {
|
if (ImGui::RadioButton("GLSL/HLSL (if available)",settings.shaderOsc==1)) {
|
||||||
settings.shaderOsc=1;
|
settings.shaderOsc=1;
|
||||||
|
settingsChanged=true;
|
||||||
}
|
}
|
||||||
if (ImGui::IsItemHovered()) {
|
if (ImGui::IsItemHovered()) {
|
||||||
ImGui::SetTooltip("render using shaders that run on the graphics card.\nonly available in OpenGL render backend.");
|
ImGui::SetTooltip("render using shaders that run on the graphics card.\nonly available in OpenGL render backend.");
|
||||||
|
|
Loading…
Reference in a new issue