Gvin / LongOS

Open-source OS for ComputerCraft
3 stars 0 forks source link

Popups can appear off the screen #42

Open theoriginalbit opened 11 years ago

theoriginalbit commented 11 years ago

When right-clicking a popup can appear off the screen. Screenshot

A suggested fix would be to have it something like

if mouse x + popup width > screen width
  popup x position = screen width - popup width

or

if mouse x + popup width > screen width
  popup x position = mouse x - popup width
Gvin commented 11 years ago

We are planning to completely rewrite the popup window functionality. This issue will also be fixed. But thanks for reporting!