aboutsummaryrefslogtreecommitdiff
path: root/lumina-fm/widgets/DirWidget.h
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-02-05 14:07:41 -0500
committerKen Moore <moorekou@gmail.com>2016-02-05 14:07:41 -0500
commit1888981c405d60b4e4accdfc086457a8ba8e3277 (patch)
treeabaeac852ac8428f6ce1d5b2cc4276099d3ff555 /lumina-fm/widgets/DirWidget.h
parentA few small fixes to lumina-desktop: (diff)
downloadlumina-1888981c405d60b4e4accdfc086457a8ba8e3277.tar.gz
lumina-1888981c405d60b4e4accdfc086457a8ba8e3277.tar.bz2
lumina-1888981c405d60b4e4accdfc086457a8ba8e3277.zip
Convert the ZFS snapshot timestamp label into a button with a dropdown menu of all the snapshots by name (same time-ordered list: oldest->newest). This allows the user to go into a specific snapshot instead of using the time slider.
Diffstat (limited to 'lumina-fm/widgets/DirWidget.h')
-rw-r--r--lumina-fm/widgets/DirWidget.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lumina-fm/widgets/DirWidget.h b/lumina-fm/widgets/DirWidget.h
index f3e55f4e..fad699b8 100644
--- a/lumina-fm/widgets/DirWidget.h
+++ b/lumina-fm/widgets/DirWidget.h
@@ -130,7 +130,9 @@ private slots:
// -- Top Snapshot Buttons
void on_tool_snap_newer_clicked();
void on_tool_snap_older_clicked();
- void on_slider_snap_valueChanged(int);
+ void on_slider_snap_valueChanged(int val = -1);
+ void direct_snap_selected(QAction*);
+
//Top Toolbar buttons
void on_actionBack_triggered();
void on_actionUp_triggered();
bgstack15