diff options
author | Arno <am@disconnect.de> | 2010-12-31 17:04:03 +0100 |
---|---|---|
committer | Arno <am@disconnect.de> | 2010-12-31 17:04:03 +0100 |
commit | 87397ae91c06cc9d80b1d3f20484c5a3d7a338ba (patch) | |
tree | 046818a0eeaed27feee5f20f1773b5f23b6fc593 /fileview.cpp | |
parent | 3fb9f6fdad018a4a150ef2739730e73e6ed8bf22 (diff) | |
download | SheMov-87397ae91c06cc9d80b1d3f20484c5a3d7a338ba.tar.gz SheMov-87397ae91c06cc9d80b1d3f20484c5a3d7a338ba.tar.bz2 SheMov-87397ae91c06cc9d80b1d3f20484c5a3d7a338ba.zip |
Bugfix for HoverWindow
Hide HoverWindow when showing the contextMenu.
Diffstat (limited to 'fileview.cpp')
-rw-r--r-- | fileview.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fileview.cpp b/fileview.cpp index 0670bd1..8874b31 100644 --- a/fileview.cpp +++ b/fileview.cpp @@ -99,6 +99,7 @@ void FileView::closeEditor(QWidget *editor, QAbstractItemDelegate::EndEditHint h } void FileView::contextMenuEvent(QContextMenuEvent *e){ + mHoverWin->hide(); QMenu contextMenu(this); foreach(QAction *a, actions()){ contextMenu.addAction(a); |