summaryrefslogtreecommitdiff
path: root/gtk2_ardour/session_dialog.h
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2017-09-10 15:33:12 -0500
committerBen Loftis <ben@harrisonconsoles.com>2017-09-10 15:33:12 -0500
commit3c813514136e328cfac2bf3bd05468aeec6287dd (patch)
treed70ca785eecffebd3b94b6b179d9b65b6746e2b9 /gtk2_ardour/session_dialog.h
parentfdbe22d00544cfc96a16a39200ce980a721ba841 (diff)
Mixbus needs to show Created-With on the recent sessions list
Diffstat (limited to 'gtk2_ardour/session_dialog.h')
-rw-r--r--gtk2_ardour/session_dialog.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk2_ardour/session_dialog.h b/gtk2_ardour/session_dialog.h
index ff630c2cd5..9d4f08ed97 100644
--- a/gtk2_ardour/session_dialog.h
+++ b/gtk2_ardour/session_dialog.h
@@ -113,6 +113,7 @@ private:
add (fullpath);
add (sample_rate);
add (disk_format);
+ add (created_with);
add (time_modified);
add (time_formatted);
}
@@ -121,6 +122,7 @@ private:
Gtk::TreeModelColumn<std::string> fullpath;
Gtk::TreeModelColumn<std::string> sample_rate;
Gtk::TreeModelColumn<std::string> disk_format;
+ Gtk::TreeModelColumn<std::string> created_with;
Gtk::TreeModelColumn<int64_t> time_modified;
Gtk::TreeModelColumn<std::string> time_formatted;
};