diff options
Diffstat (limited to 'fileview.cpp')
-rw-r--r-- | fileview.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fileview.cpp b/fileview.cpp index f4f5294..03fc76f 100644 --- a/fileview.cpp +++ b/fileview.cpp @@ -163,6 +163,9 @@ bool FileView::event(QEvent *e){ if(!curIdx.isValid() || (curIdx.column() != 0)){ return exitHover(); } + if(curIdx.data().toString() == ".."){ + return exitHover(); + } QFileInfo fi(curIdx.data(QFileSystemModel::FilePathRole).toString()); if(!fi.exists()){ return true; |