limit meterbridge window height to multiples of 16px

(workaround to bad resizing performance, realloc drawing areas)
This commit is contained in:
Robin Gareus 2013-07-10 02:42:29 +02:00
parent 0571e5d6ae
commit 50a1eb04a5
1 changed files with 6 additions and 2 deletions

View File

@ -118,7 +118,9 @@ Meterbridge::Meterbridge ()
Gdk::Geometry geom;
geom.max_width = 1<<16;
geom.max_height = max_height;
set_geometry_hints(*((Gtk::Window*) this), geom, Gdk::HINT_MAX_SIZE);
geom.height_inc = 16;
geom.width_inc = 1;
set_geometry_hints(*((Gtk::Window*) this), geom, Gdk::HINT_MAX_SIZE | Gdk::HINT_RESIZE_INC);
set_keep_above (true);
set_border_width (0);
@ -331,7 +333,9 @@ Meterbridge::on_size_request (Gtk::Requisition* r)
if (cur_max_width != geom.max_width) {
cur_max_width = geom.max_width;
set_geometry_hints(*((Gtk::Window*) this), geom, Gdk::HINT_MAX_SIZE);
geom.height_inc = 16;
geom.width_inc = 1;
set_geometry_hints(*((Gtk::Window*) this), geom, Gdk::HINT_MAX_SIZE | Gdk::HINT_RESIZE_INC);
}
}