Skip to content

Commit

Permalink
Added the correct size for the logo and for the fontsize
Browse files Browse the repository at this point in the history
  • Loading branch information
AKMaily committed Aug 28, 2024
1 parent d30db3b commit cc7842c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
},
"font": "comicsans",
"minscale": 1.0,
"scale": 1.5000001192092896
"scale": 1.01
},
"title": "Omniview 0.5",
"window": {
Expand Down
4 changes: 2 additions & 2 deletions src/style.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,8 @@ void set_side_menu(const nlohmann::json &config, bool &open_settings,
fmt::println("Error Loading Png #{}.", i);
}

float scaleWidth = windowSize.x * 0.0005f;
float scaleHeight = windowSize.y * 0.0008f;
float scaleWidth = windowSize.x * 0.00035f;
float scaleHeight = windowSize.y * 0.00065f;
// Begin the SideBarMenu
if (loaded_png[PngRenderedCnt]) { // render AIGroupLogo
ImGui::Image((void *)(intptr_t)image_texture[PngRenderedCnt],
Expand Down

0 comments on commit cc7842c

Please sign in to comment.