aboutsummaryrefslogtreecommitdiff
path: root/lumina-fm/widgets/DirWidget.h
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-10-14 14:01:12 -0400
committerKen Moore <moorekou@gmail.com>2015-10-14 14:01:12 -0400
commit838477d0b6bca5327082095711b59eb533affa52 (patch)
treee9c4adea922a060d6a1e3f04b4b4e9ca773c6596 /lumina-fm/widgets/DirWidget.h
parentWhen dropping files into lumina-fm: Only treat it as a move when the initial/... (diff)
downloadlumina-838477d0b6bca5327082095711b59eb533affa52.tar.gz
lumina-838477d0b6bca5327082095711b59eb533affa52.tar.bz2
lumina-838477d0b6bca5327082095711b59eb533affa52.zip
Clean up some more of lumina-fm:
1) Put the status label on a line below all the buttons (they get crushed together with multiple columns) 2) Fix the time-based event processing when loading a directory (1/2 second updates now) 3) Update the drag/drop indicator items based on the directory underneath. 4) Fix the F5 keyboard shortcut to refresh a directory.
Diffstat (limited to 'lumina-fm/widgets/DirWidget.h')
-rw-r--r--lumina-fm/widgets/DirWidget.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-fm/widgets/DirWidget.h b/lumina-fm/widgets/DirWidget.h
index d9573150..799251f4 100644
--- a/lumina-fm/widgets/DirWidget.h
+++ b/lumina-fm/widgets/DirWidget.h
@@ -90,7 +90,7 @@ private:
DDTreeWidget *treeWidget;
//Keyboard Shortcuts
- QShortcut *copyFilesShort, *cutFilesShort, *pasteFilesShort, *deleteFilesShort, *refreshShort;
+ QShortcut *copyFilesShort, *cutFilesShort, *pasteFilesShort, *deleteFilesShort;
//Watcher to determine when the dir changes
QFileSystemWatcher *watcher;
QTimer *synctimer;
bgstack15