OpenBoard-org / OpenBoard

OpenBoard is a cross-platform interactive whiteboard application intended for use in a classroom setting.
https://openboard.ch/
GNU General Public License v3.0
2.34k stars 423 forks source link

[Bug] Delete or Duplicate buttons on left panel do not work #1103

Open sebojolais opened 6 days ago

sebojolais commented 6 days ago

In the board view, the left panel shows the pages of the current document. Each page has 2 buttons to delete or duplicate it. These 2 buttons do not work in my side.

to reproduce :

-> Solution and root cause: Since this commit : https://github.com/OpenBoard-org/OpenBoard/commit/4730dc2cdfe1fae943a820cae201a60c3741d494 The thumbnail is filled by rescaled pixmaps. So it seems that the buttons are also rescaled and the hard coded size of the icon (32) are not suitable.

The scale applied is :

1 / transform().m11()

So if we multiply the mouse coordinate by the inverse of this scale, it will work.