summaryrefslogtreecommitdiff
path: root/gtk2_ardour
AgeCommit message (Collapse)Author
2015-09-28change the way the audio clock cursor is drawn (somewhat of an experiment ↵Paul Davis
but it has some benefits
2015-09-28when editing an audio clock, swallow illegal keys rather than allowing them ↵Paul Davis
to reach the rest of the GUI
2015-09-28fix the logic of the GUI "toggle roll" action as it pertains to loop recordingPaul Davis
2015-09-28add new action and loop marker menu item for setting up loop recordPaul Davis
2015-09-27mixer-strip name context-menu cleanupRobin Gareus
patch thanks to chaot4
2015-09-27add deva to authors.Robin Gareus
2015-09-27Close export directory browser dialog when clicking on 'Cancel' button, ↵Tim Mayberry
Fixes #6594
2015-09-27fix mixer group-tab width - #6572Robin Gareus
EditorGroupTabs are re-exposed in the idle-callback, widgets are packed and geometry is valid. Mixer_UI::redisplay_track_list() does not have this property.
2015-09-25fix crash at session-close, amend dec4790dRobin Gareus
2015-09-24redisplay markers after removal - fixes #6596Robin Gareus
2015-09-21Hide create new item from Group Tab context menuTodd Naugle
Creating a new empty group from the group tab area just looks broken since nothing visible happens, so hide this item when the context menu is triggered from this location.
2015-09-21Create new Groups with a consistent set of default properties.Todd Naugle
This is part of a larger fix for #6450. Previously new route groups were created with different default properties depending on which code created the new group. The group tab method had all properties set and that is now going to be the default for all other methods (mixer strip button, etc).
2015-09-21processor-box: explicitly check for "Amp" (Fader)Robin Gareus
2015-09-21save-as, update button sensitivity when dir changesRobin Gareus
2015-09-20add André to authors list.Robin Gareus
2015-09-20fix duplicating multiple selected regions - fixes #6202André Nusser
2015-09-20update SFDB settings when track selection changesRobin Gareus
2015-09-20fix initial state of Import DialogRobin Gareus
2015-09-20basic GUI support to auto-align video by LTC.Robin Gareus
2015-09-20GUI part of silence-trim fade constraint.Robin Gareus
2015-09-19Silence detect: constrain duration in GUI.Robin Gareus
2015-09-19NOOP, whitespace.Robin Gareus
2015-09-19indicate that silence trim is already active.Robin Gareus
2015-09-19band-aid for Glib::operator<<Robin Gareus
it seems that g_locale_from_utf8() (called by <<) is not thread safe, at least not on OSX. glib error-code 1, Invalid byte sequence in conversion input -> throws Glib::Error. possible fix for #6435, route-creation is interrupted via catch(...)
2015-09-19fix crash at exit, ctrl+s during quit.Robin Gareus
2015-09-19fix possible endless loop in silence detectionRobin Gareus
2015-09-19remove cruftRobin Gareus
2015-09-19StripSilence: invalidate Completed connection - fixes #6600Robin Gareus
2015-09-19tweak colors for silence-detectionRobin Gareus
The text annotation needs to be visible: - above default background (dark gray) - above waveform (orange) - above silent-highly regions (violet, was bright turqoise) old color (dark blue) failed for all but the waveform.
2015-09-19fix progress reporter, use idle callback.Robin Gareus
do not directly hook into Glib's Main Context.
2015-09-18create new Event-IDs for pasted midi-notesRobin Gareus
2015-09-18Revert "work around bug or feature of string_compose()"Robin Gareus
This reverts commit 17baf9362641f024440b61cecc176ee9096e1418. It's no longer needed since c1d6a2f
2015-09-17associate label more closely with VST path button. the plugin tab needs a ↵Ben Loftis
complete layout rethink, someday
2015-09-17speficy gtk treeview style for consistencyRobin Gareus
2015-09-17work around bug or feature of string_compose()Robin Gareus
string_compose("x%1x x%2x x%3x", "A", "", "C") -> "xAx xCx xx" and not -> "xAx xx xCx"
2015-09-17use pbd's gstdio compatibility wrapper (GUI)Robin Gareus
2015-09-17explicit glibmm/datetime includeRobin Gareus
On some distros. glibmm.h does not include glibmm/datetime.h
2015-09-17Use PBD::open_uri in about dialog to open website, should fix #6463Tim Mayberry
2015-09-17fix #6588. use ardour-codename only for Ardour.Robin Gareus
2015-09-17fix a tautologically undefined comparisonRobin Gareus
2015-09-17deleting pointers to incomplete types may cause undefined behaviorRobin Gareus
2015-09-17fix clang compilation. Robin Gareus
pbd/configuration_variable.h:84:6: error: call to function 'operator>>' that is neither visible in the template definition nor found by argument-dependent lookup ardour/types.h defines std::istream& operator>> and must be included prior to pbd/configuration_variable.h
2015-09-16fix missed but required merge resolution related to UIConfiguration's new ↵Paul Davis
status as a singleton in this branch.
2015-09-16Use tooltips.h in ArdourButton to remove ardour_ui.h inclusionTim Mayberry
2015-09-16Use ARDOUR_UI_UTILS::set_tooltip rather than via ARDOUR_UI::set_tipTim Mayberry
This removes the direct dependence on ARDOUR_UI/Gtk_UI for setting tooltips. Removes inclusion of ardour_ui.h from 16 files.
2015-09-16Add tooltips.h header for setting tooltips rather than via ardour_ui.hTim Mayberry
2015-09-16Add missing header include in midi_channel_selector.hTim Mayberry
2015-09-16Add missing header include in shuttle_control.hTim Mayberry
2015-09-16Add missing header include in plugin_selector.hTim Mayberry
2015-09-16Remove ardour_ui.h header inclusionTim Mayberry