@@ -1101,27 +1101,36 @@ void HDRViewApp::draw_about_dialog(bool &open)
11011101 platform_backend, renderer_backend);
11021102 ImGui::PopFont ();
11031103 ImGui::PopTextWrapPos ();
1104+
1105+ ImGui::Spacing ();
1106+
1107+ {
1108+ ImGui::PushTextWrapPos (0 .f );
1109+ ImGui::PushFont (m_sans_bold, ImGui::GetStyle ().FontSizeBase * 16 .f / 14 .f );
1110+ ImGui::TextUnformatted (
1111+ " HDRView is a simple research-oriented tool for examining, comparing, manipulating, and "
1112+ " converting high-dynamic range images." );
1113+ ImGui::PopFont ();
1114+
1115+ ImGui::PopTextWrapPos ();
1116+ }
1117+
1118+ ImGui::Spacing ();
1119+
11041120 ImGui::EndTable ();
11051121 }
11061122
11071123 ImGui::Spacing ();
11081124
11091125 {
11101126 ImGui::PushTextWrapPos (0 .f );
1111- ImGui::PushFont (m_sans_bold, ImGui::GetStyle ().FontSizeBase * 16 .f / 14 .f );
1112- ImGui::TextUnformatted (
1113- " HDRView is a simple research-oriented tool for examining, comparing, manipulating, and "
1114- " converting high-dynamic range images." );
1115- ImGui::PopFont ();
1116-
1117- ImGui::Spacing ();
1118-
11191127 ImGui::TextUnformatted (
11201128 " It is developed by Wojciech Jarosz, and is available under a 3-clause BSD license." );
11211129 ImGui::PopTextWrapPos ();
11221130 }
11231131
1124- // #if 0
1132+ ImGui::Spacing ();
1133+
11251134 if (ImGui::BeginTabBar (" AboutTabBar" ))
11261135 {
11271136 if (ImGui::BeginTabItem (" Keybindings" , nullptr ))
@@ -1180,6 +1189,8 @@ void HDRViewApp::draw_about_dialog(bool &open)
11801189#endif
11811190 ImGui::PopFont ();
11821191
1192+ ImGui::PushStyleVar (ImGuiStyleVar_FramePadding, ImVec2 (2 , 2 ));
1193+
11831194 if (ImGui::PE::Begin (" about_table2" , 0 ))
11841195 {
11851196 ImGui::TableSetupColumn (" one" , ImGuiTableColumnFlags_WidthFixed, col_width);
@@ -1263,11 +1274,14 @@ void HDRViewApp::draw_about_dialog(bool &open)
12631274
12641275 ImGui::PE::End ();
12651276 }
1277+
1278+ ImGui::PopStyleVar ();
12661279 ImGui::PopTextWrapPos ();
12671280 ImGui::EndChild ();
12681281 ImGui::PopStyleColor ();
12691282 ImGui::EndTabItem ();
12701283 }
1284+
12711285 if (ImGui::BeginTabItem (" Build info" ))
12721286 {
12731287 // Build the info text string for display and clipboard
@@ -1417,7 +1431,6 @@ void HDRViewApp::draw_about_dialog(bool &open)
14171431 }
14181432 ImGui::EndTabBar ();
14191433 }
1420- // #endif
14211434
14221435 if (ImGui::Button (" Dismiss" , EmToVec2 (8 .f , 0 .f )) || ImGui::Shortcut (ImGuiKey_Escape) ||
14231436 ImGui::Shortcut (ImGuiKey_Enter) || ImGui::Shortcut (ImGuiKey_Space) ||
0 commit comments