-
Notifications
You must be signed in to change notification settings - Fork 89
I6268 update imgui to 1.91.9 #5219
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
source/MRViewer/MRToolbar.cpp
Outdated
float width = ImGui::GetContentRegionAvail().x + ImGui::GetCursorPos().x; | ||
int countInColumn = 11; | ||
float heightStep = ImGui::GetWindowContentRegionMax().y / countInColumn; | ||
float heightStep = ( ImGui::GetContentRegionAvail().y + ImGui::GetCursorPos().y ) / countInColumn; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mb we should introduce our own function for this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
source/MRViewer/MRToolbar.cpp
Outdated
ImGui::Dummy( tooltipSize ); | ||
ImGui::SetCursorPos( { 0, 0 } ); | ||
spdlog::info( "{}, {}", ImGui::GetCurrentWindow()->Size.x, ImGui::GetCurrentWindow()->Size.y ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is it debug code?
…o i6268_update_imgui_to_1.91.9
No description provided.