You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! I'm studying your framework and I'm using two displays in Windows platform. I set the scale of one display up to 125% and left the other one normal (100%). When I externalize a dock to another display (125) and keep the root on the other (100), the fullscreen doesn't fill all the available space.
The following code gives me the right scale, in this case: 1.25.
I already tried to just multiply the bounds (w and h) by thatscale, but it didn't work, seems to me that have another code working on that as well, but I'm not pretty sure about it.
I'm working on the class DefaultScreenDockFullscreenStrategy. If you have some idea of what could be, please give a return and I can send the fix.
The text was updated successfully, but these errors were encountered:
Thanks for answering, but it didn't work :( haha
The problem with the dimension only happens when the panels are in different displays. If both are in the same display (with scale or not) the fullscreen works fine.
I'll give some more shots in this issue and try to solve, any help is welcome :)
[update]:
case 1: both panels (root and externalized dock) in the same display with 125% of scale
case 2: externalized dock in the display with 125% and root in another display with 100%
from DefaultScreenDockFullscreenStrategy.findBestFullscreenBounds is returned the same Rectangle for both cases, but with case 1 the externalized dock fills all the available space, but in the case 2 doesn't. Looks like the framework is getting some configuration from where the root panel is.
Hi! I'm studying your framework and I'm using two displays in Windows platform. I set the scale of one display up to 125% and left the other one normal (100%). When I externalize a dock to another display (125) and keep the root on the other (100), the fullscreen doesn't fill all the available space.
The following code gives me the right scale, in this case:
1.25
.I already tried to just multiply the bounds (w and h) by thatscale, but it didn't work, seems to me that have another code working on that as well, but I'm not pretty sure about it.
I'm working on the class
DefaultScreenDockFullscreenStrategy
. If you have some idea of what could be, please give a return and I can send the fix.The text was updated successfully, but these errors were encountered: