_single_exposure is now a member variable for each GtkCanvas.

Gtk coalesces multiple exposes into a single combined rect.
If _single_exposure is disabled, we break apart the individual expose rects for the canvas rendering.
This commit is contained in:
Ben Loftis 2015-02-12 11:22:55 -06:00
parent 16346296d3
commit b8ec035b24
2 changed files with 18 additions and 15 deletions

View file

@ -225,6 +225,8 @@ private:
Item * _grabbed_item;
/** the item that currently has key focus or 0 */
Item * _focused_item;
bool _single_exposure;
sigc::connection tooltip_timeout_connection;
Item* current_tooltip_item;