mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-25 07:34:03 -06:00
FIX:fixed popup wrong pos of the print menu on multiple displays
Change-Id: I9712244df4e0df9dcb5beedf4dd36e3a06fa9db6
This commit is contained in:
parent
b81a26d019
commit
ab49516ec1
1 changed files with 5 additions and 1 deletions
|
@ -42,8 +42,12 @@ bool SidePopup::Show( bool show )
|
|||
void SidePopup::Popup(wxWindow* focus)
|
||||
{
|
||||
Create();
|
||||
int screenwidth = wxSystemSettings::GetMetric(wxSYS_SCREEN_X,NULL);
|
||||
auto drect = wxDisplay(GetParent()).GetGeometry();
|
||||
int screenwidth = drect.x + drect.width;
|
||||
//int screenwidth = wxSystemSettings::GetMetric(wxSYS_SCREEN_X,NULL);
|
||||
|
||||
int max_width = 0;
|
||||
|
||||
for (auto btn : btn_list)
|
||||
{
|
||||
max_width = std::max(btn->GetMinSize().x, max_width);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue