diff options
| author | Peter Penz <[email protected]> | 2012-06-02 17:41:20 +0200 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2012-06-02 17:42:11 +0200 |
| commit | 86ce0d761da4897b66d61fbda04bc02256db0618 (patch) | |
| tree | cbc3ae27179501e82872606d2d41d7aac02f8712 | |
| parent | 931e180400fbb41126c2a0da09e3c30cb9550c48 (diff) | |
Hide tooltip when changing the zoomlevel
BUG: 301056
FIXED-IN: 4.9.0
| -rw-r--r-- | src/views/dolphinview.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/views/dolphinview.cpp b/src/views/dolphinview.cpp index 6a21885e6..986ecfaf8 100644 --- a/src/views/dolphinview.cpp +++ b/src/views/dolphinview.cpp @@ -382,6 +382,7 @@ void DolphinView::setZoomLevel(int level) const int oldZoomLevel = zoomLevel(); m_view->setZoomLevel(level); if (zoomLevel() != oldZoomLevel) { + hideToolTip(); emit zoomLevelChanged(zoomLevel(), oldZoomLevel); } } |
