summaryrefslogtreecommitdiff
path: root/gtk2_ardour/session_dialog.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-08-17 16:47:27 +0200
committerRobin Gareus <robin@gareus.org>2017-08-17 16:47:27 +0200
commite62e040502ac35213ce11353c9c1e7a487eb941f (patch)
tree4c987f62a84a660f44af653fb5fbf5fc25e99684 /gtk2_ardour/session_dialog.h
parenta4ee2d3c1743245b2c0bb8ec65c09974b130cce5 (diff)
SessionDialog: hide created-with column in Ardour, use a tooltip.
Diffstat (limited to 'gtk2_ardour/session_dialog.h')
-rw-r--r--gtk2_ardour/session_dialog.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/gtk2_ardour/session_dialog.h b/gtk2_ardour/session_dialog.h
index 8aced6c90d..ff630c2cd5 100644
--- a/gtk2_ardour/session_dialog.h
+++ b/gtk2_ardour/session_dialog.h
@@ -153,13 +153,15 @@ private:
add (name);
add (path);
add (description);
- add (created_with);
+ add (created_with_short);
+ add (created_with_long);
}
Gtk::TreeModelColumn<std::string> name;
Gtk::TreeModelColumn<std::string> path;
Gtk::TreeModelColumn<std::string> description;
- Gtk::TreeModelColumn<std::string> created_with;
+ Gtk::TreeModelColumn<std::string> created_with_short;
+ Gtk::TreeModelColumn<std::string> created_with_long;
};
SessionTemplateColumns session_template_columns;