summaryrefslogtreecommitdiff
path: root/gtk2_ardour/session_dialog.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-09-23 21:36:13 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-09-23 21:36:13 -0400
commit0f6ba422f673af136c592b5ea3d913cd86f57b19 (patch)
tree0bf3a319e636ba12f0b1826548c05411d1ac4d3f /gtk2_ardour/session_dialog.h
parent4209e8a8347940a5d17b129fa1f52d4f57efd02c (diff)
use new Session API to show session SR and disk bit depth in recent sessions list
Diffstat (limited to 'gtk2_ardour/session_dialog.h')
-rw-r--r--gtk2_ardour/session_dialog.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/gtk2_ardour/session_dialog.h b/gtk2_ardour/session_dialog.h
index bb43bc2931..21d2f5ea3f 100644
--- a/gtk2_ardour/session_dialog.h
+++ b/gtk2_ardour/session_dialog.h
@@ -110,10 +110,14 @@ class SessionDialog : public ArdourDialog {
add (visible_name);
add (tip);
add (fullpath);
+ add (sample_rate);
+ add (disk_format);
}
Gtk::TreeModelColumn<std::string> visible_name;
Gtk::TreeModelColumn<std::string> tip;
Gtk::TreeModelColumn<std::string> fullpath;
+ Gtk::TreeModelColumn<std::string> sample_rate;
+ Gtk::TreeModelColumn<std::string> disk_format;
};
RecentSessionModelColumns recent_session_columns;