Fixed alignment on native resolution checkbox description label.

This commit is contained in:
David Salvisberg 2015-07-17 17:36:01 +02:00
parent e1d02e558b
commit 0fc409785a
1 changed files with 12 additions and 1 deletions

View File

@ -481,6 +481,17 @@ struct SettingsMenuPrivate
return result; return result;
} }
static inline void TextCentered(const char* str_id, const ImVec2 &size)
{
ImGui::PushStyleColor(ImGuiCol_Button, ImGui::GetStyle().Colors[ImGuiCol_WindowBg]);
ImGui::PushStyleColor(ImGuiCol_ButtonHovered, ImGui::GetStyle().Colors[ImGuiCol_WindowBg]);
ImGui::PushStyleColor(ImGuiCol_ButtonActive, ImGui::GetStyle().Colors[ImGuiCol_WindowBg]);
ImGui::Button(str_id, size);
ImGui::PopStyleColor();
ImGui::PopStyleColor();
ImGui::PopStyleColor();
}
void displayGraphicsTab() void displayGraphicsTab()
{ {
if(ImGui::CollapsingHeader("Display Settings", 0, true, true)) if(ImGui::CollapsingHeader("Display Settings", 0, true, true))
@ -514,7 +525,7 @@ struct SettingsMenuPrivate
res[1] = 3*native[1]; res[1] = 3*native[1];
} }
ImGui::SameLine(); ImGui::SameLine();
ImGui::Text("Recommended if no smooth upscaling."); TextCentered("Recommended if no smooth upscaling.", ImVec2(0, 24));
ImGui::Checkbox("Start in fullscreen", &tempConfig.fullscreen); ImGui::Checkbox("Start in fullscreen", &tempConfig.fullscreen);
ImGui::SameLine(); ImGui::SameLine();
ImGui::Checkbox("Keep aspect ratio", &tempConfig.fixedAspectRatio); ImGui::Checkbox("Keep aspect ratio", &tempConfig.fixedAspectRatio);