Browse Source

Minor fix to tooltip positioning

merge-requests/365/head
eidheim 9 years ago
parent
commit
6b4c814478
  1. 2
      src/tooltips.cc

2
src/tooltips.cc

@ -109,6 +109,8 @@ void Tooltip::show(bool disregard_drawn) {
} }
position={rectangle.get_x(), rectangle.get_y()}; position={rectangle.get_x(), rectangle.get_y()};
if(window->get_realized())
window->move(position.first, position.second);
window->show_all(); window->show_all();
} }

Loading…
Cancel
Save