build 180904. sunlight applied to clouds, cab control labels included in the localization system, minor bug fixes

This commit is contained in:
tmj-fstate
2018-09-04 22:05:34 +02:00
parent 36ff8d83e8
commit bbe5fe9758
8 changed files with 443 additions and 134 deletions

View File

@@ -92,6 +92,7 @@ ui_layer::init_colors() {
auto const itembase { ImVec4( accent.x, accent.y, accent.z, 0.35f ) };
auto const itemhover { ImVec4( accent.x, accent.y, accent.z, 0.65f ) };
auto const itemactive { ImVec4( accent.x, accent.y, accent.z, 0.95f ) };
auto const modalbackground { ImVec4( accent.x, accent.y, accent.z, 0.95f ) };
colors[ ImGuiCol_WindowBg ] = background;
colors[ ImGuiCol_PopupBg ] = background;
@@ -111,6 +112,7 @@ ui_layer::init_colors() {
colors[ ImGuiCol_ResizeGrip ] = itembase;
colors[ ImGuiCol_ResizeGripHovered ] = itemhover;
colors[ ImGuiCol_ResizeGripActive ] = itemactive;
colors[ ImGuiCol_ModalWindowDimBg ] = modalbackground;
}
void