summaryrefslogtreecommitdiff
path: root/gtk2_ardour
AgeCommit message (Collapse)Author
2017-02-02canvas tester tweakPaul Davis
2017-02-02toolbar creation from text filesPaul Davis
2017-02-02shorten enum/string for icons by avoiding Gtkmm2ext namespacePaul Davis
2017-02-02include ArdourIcon in declared enumsPaul Davis
2017-02-02use different source file for canvas testerPaul Davis
2017-02-02additional commit for removal of TransportControllablesPaul Davis
2017-02-02ARDOUR_UI transport buttons should use ArdourButton::set_related_action().Paul Davis
I have no idea what I or anyone was thinking with the silly TransportControllable nonsense, but it's all gone now.
2017-02-02GUI to select export session/snapshot nameRobin Gareus
2017-02-01playing games with canvas (grid) testPaul Davis
2017-02-01use new Grid APIPaul Davis
2017-02-01valgrind option (commented) for canvas testerPaul Davis
2017-02-01more sophisticated canvas testerPaul Davis
2017-02-01some initial bits of work on canvas allocationPaul Davis
2017-01-31Skip no-change re-ordering of tracks/bussesRobin Gareus
e.g. move top-most track up, bottom-most track down.
2017-01-31Don't allow to select VCAs in the route-listRobin Gareus
2017-01-31Potential clock info-text color-glitch fix <span color>Robin Gareus
Don't switch between set_text() and set_markup(); always use markup because set_markup() modifies the attribute list of the pango-layout. This might fix: "Switch Int. clock to MTC and back to Int. and the indicator redraws with improper colors"
2017-01-30Prefer General MIDI Synth as default instrumentRobin Gareus
2017-01-30prevent crash when deselecting track from mixer.Paul Davis
Need to defer PresentationInfo::Change till after we're done changing our own cached set of axis views
2017-01-30left/right align mixer-stripsRobin Gareus
2017-01-30speed up midi ghost region updatenick_m
- as MRV removes invalid notes from the GR, we can simply update all events after checking vertical visibility.
2017-01-29prevent suggestion that MIDI tracks can be set to stacked viewPaul Davis
2017-01-29Keep tracks visible when re-ordering them in the editorRobin Gareus
2017-01-28fix up default key bindings to use correct binding groups after recent ↵Paul Davis
Editor -> Common migration
2017-01-28more modified key bindingsPaul Davis
2017-01-28move 10 more actions from Editor/* to Common/*Paul Davis
2017-01-28two more modified key bindingsPaul Davis
2017-01-28change default keybindings for those using actions just moved from Editor/* ↵Paul Davis
to Common/*
2017-01-28move 15 actions out of Editor/* namespace, and into Common/*Paul Davis
2017-01-28further improvement to Mixer_UI::move_stripable_into_view()Paul Davis
2017-01-28improve the behaviour of Mixer_UI::move_stripable_into_view()Paul Davis
Don't change anything if the strip is visible; if we have to move to show it, try to show the requested strip in the middle
2017-01-28use VCA full name in strips and track headersPaul Davis
2017-01-28more consisten code to set menu item name from VCA namePaul Davis
2017-01-28Patch to bug 0007204 : Some options in the Group List context menu are not ↵Ed Ward
working
2017-01-28mark loop button insensitive when there's no loop-rangeRobin Gareus
2017-01-28ensure mixer shows a recently selected stripPaul Davis
This doesn't guarantee that is it the MOST recently selected strip
2017-01-28ensure that most recently stripable is visible in editorPaul Davis
2017-01-28end of selected tracks list is the most recently selectedPaul Davis
2017-01-28minor logic changes to editor selectionPaul Davis
Prevent mulitple PresentationInfo::Change signals if toggling several tracks
2017-01-28make editor respond to track seleciton change againPaul Davis
2017-01-27remove editor/mixer selection change signals; make editor and mixer use ↵Paul Davis
PresentationInfo::Change more correctly; make Selection a bit smarter when setting track selection
2017-01-27remove debug output/ifdefPaul Davis
2017-01-27use RAII for class-wide PresentationInfo::Change signal, along with ↵Paul Davis
properties to describe what changed
2017-01-27add undo for changing marker lock style from menunick_m
2017-01-27mark session dirty when dragging tempo markers.nick_m
2017-01-27MidiGhostRegion micro-optimisation.nick_m
2017-01-27MidiRegionView::redisplay_model() - code cleanupnick_m
2017-01-26Fix mixer continuous multi-selectionRobin Gareus
Shift+select needs to iterate over strips as they are visually ordered. (Previously the order of adding/loading strips was used)
2017-01-25improve range drag semanticsPaul Davis
If a track is selected during the drag (by moving the mouse pointer into a new track), but it was not selected at the start, and is then de-selected (by moving the mouse back out of it), then remove it from the selection.
2017-01-25This turns out to have been a band-aid over a deeper issue in libcanvas, fixedPaul Davis
in commit 49422aa89 Revert "fix an issue with selection rects not being redrawn correctly" This reverts commit fa1a7ae9b91d0321b71b3de4f720a393d827cd9c.
2017-01-25fix an issue with selection rects not being redrawn correctlyPaul Davis