Fix menu icons that were sometimes too small.

[GB.GTK]
* BUG: Fix menu icons that were sometimes too small.

[GB.GTK3]
* BUG: Fix menu icons that were sometimes too small.
This commit is contained in:
gambas 2020-11-27 20:32:33 +01:00
parent e5cc73ee61
commit dd40941136

View file

@ -436,7 +436,8 @@ void gMenu::updatePicture()
return;
}
size = (gDesktop::scale() * 2 + 1) & ~7;
gtk_widget_get_size_request(image, NULL, &size);
size = size & ~3;
pic = _picture->stretch(size, size, true);
if (_disabled)