16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-19 11:09:19 +02:00

visual look changes

This commit is contained in:
milek7
2019-09-25 17:54:44 +02:00
parent 3c9111bb25
commit a92037d2b2
5 changed files with 167 additions and 87 deletions

View File

@@ -407,6 +407,8 @@ timetable_panel::render() {
if( false == is_open ) { return; }
if( true == text_lines.empty() ) { return; }
ImGui::PushFont(ui_layer::font_mono);
auto flags =
ImGuiWindowFlags_NoFocusOnAppearing
| ImGuiWindowFlags_NoCollapse
@@ -436,6 +438,8 @@ timetable_panel::render() {
}
}
ImGui::End();
ImGui::PopFont();
}
void
@@ -494,6 +498,8 @@ debug_panel::render() {
if( false == is_open ) { return; }
ImGui::PushFont(ui_layer::font_mono);
auto flags =
ImGuiWindowFlags_NoFocusOnAppearing
| ImGuiWindowFlags_NoCollapse
@@ -546,6 +552,8 @@ debug_panel::render() {
ImGui::Checkbox( "Debug Mode", &DebugModeFlag );
}
ImGui::End();
ImGui::PopFont();
}
void