mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 13:45:43 +01:00
* Fix tooltips in the session import dialog
* Fix arval to run from all directories git-svn-id: svn://localhost/ardour2/branches/3.0@5028 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
c7733b443a
commit
7e48118bf1
6 changed files with 22 additions and 47 deletions
|
|
@ -63,7 +63,6 @@ class SessionImportDialog : public ArdourDialog
|
|||
void end_dialog ();
|
||||
void update (string path);
|
||||
void show_info(const Gtk::TreeModel::Path& path, Gtk::TreeViewColumn* column);
|
||||
bool query_tooltip(int x, int y, bool keyboard_tooltip, const Glib::RefPtr<Gtk::Tooltip>& tooltip);
|
||||
|
||||
std::pair<bool, string> open_rename_dialog (string text, string name);
|
||||
bool open_prompt_dialog (string text);
|
||||
|
|
@ -85,8 +84,9 @@ class SessionImportDialog : public ArdourDialog
|
|||
Gtk::TreeModelColumn<std::string> name;
|
||||
Gtk::TreeModelColumn<bool> queued;
|
||||
Gtk::TreeModelColumn<ElementPtr> element;
|
||||
Gtk::TreeModelColumn<std::string> info;
|
||||
|
||||
SessionBrowserColumns() { add (name); add (queued); add (element); }
|
||||
SessionBrowserColumns() { add (name); add (queued); add (element); add (info); }
|
||||
};
|
||||
|
||||
SessionBrowserColumns sb_cols;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue