mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
More MacOS crap #3
This commit is contained in:
parent
6f7405d61e
commit
e029ebd280
1 changed files with 2 additions and 2 deletions
|
|
@ -155,7 +155,7 @@ namespace satdump
|
|||
{
|
||||
ImVec2 viewer_size = ImGui::GetContentRegionAvail();
|
||||
ImGui::BeginGroup();
|
||||
ImGui::BeginChild("ViewerChildPanel", {(float)viewer_size.x * 0.20, (float)viewer_size.y}, false);
|
||||
ImGui::BeginChild("ViewerChildPanel", {float(viewer_size.x * 0.20), float(viewer_size.y)}, false);
|
||||
{
|
||||
drawPanel();
|
||||
products_and_handlers[current_handler_id].handler->drawMenu();
|
||||
|
|
@ -166,7 +166,7 @@ namespace satdump
|
|||
ImGui::SameLine();
|
||||
|
||||
ImGui::BeginGroup();
|
||||
products_and_handlers[current_handler_id].handler->drawContents({(float)viewer_size.x * 0.80 - 4, (float)viewer_size.y});
|
||||
products_and_handlers[current_handler_id].handler->drawContents({float(viewer_size.x * 0.80 - 4), float(viewer_size.y)});
|
||||
ImGui::EndGroup();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue