summaryrefslogtreecommitdiff
path: root/gtk2_ardour
AgeCommit message (Collapse)Author
2020-05-05Fix inactive track header label displayRobin Gareus
Since 8fced29372 introduced no_show_all(), the packed widgets need to be explicitly displayed.
2020-05-04fix thinko in MidiRegionView::add_to_selection()Paul Davis
The existing code isn't wrong, but inefficient. If the selection is empty, then this is necessarily the first note, and cannot be present in the selection. So, don't search the std::set<> and then insert, just insert.
2020-05-04Tweak plugin-manager default window width #8079Robin Gareus
2020-05-03Scale plugin-manager default window size #8079Robin Gareus
2020-05-03Fix a compiler warning std::abs vs fabsfRobin Gareus
2020-05-03Fix MIDNAM model (MMA > Generic) fallbackRobin Gareus
2020-05-01more improvements in visual representation of selected MIDI notes during ↵Paul Davis
(and not during) internal editing
2020-05-01change design of MidiRegionView::add_to_selection() so that the rubber-band ↵Paul Davis
select works again Adding the first note trigged Editor::set_selected_midi_region_view() which cleared the (newly added to) selection
2020-05-01attempt to properly manage MIDI note display of selected statusPaul Davis
Whether to display the selected outline depends on BOTH whether the note is selected, and whether we are in an internal editing mode.
2020-05-01move virtual method from region_view.h to region_view.ccPaul Davis
It cannot be inlined anyway, so nothing gained by the header file presence
2020-05-01when a MIDI region has a note selected with none previously, cancel existing ↵Paul Davis
MIDI region/note selection
2020-05-01force provision of "menu-name" for all WindowProxy objects, and thus TabbablesPaul Davis
Actions for hide/show/attach/detach tabbables use hard-coded names which are not translated. Using Tabbable/WindowProxy::name() to lookup the action will fail, since the name can be translated. This changes just removes the option to not provide a menu-name when creating these objects, and uses the name menu-name when looking up an action by name
2020-05-01Fix contents-drag (ignore snap) #8073Robin Gareus
The "new" snap-to-visual-grid mechanism is not useful for Contents-trim. That would require a relative grid.
2020-05-01set LC_ALL from macOS locale so that setlocale(2) will workPaul Davis
2020-05-01fix apple use of - instead of _ in language identifiers; only set LANGUAGE ↵Paul Davis
if the language preferences are translatable
2020-05-01notice if macOS user has en_US as primary languagePaul Davis
2020-05-01remove hard to understand and incorrect comment sentencePaul Davis
2020-05-01tell stdout if setlocale(2) failsPaul Davis
2020-04-30update other .po filesPaul Davis
2020-04-30fix context-providing translation for de_DE where the context string had ↵Paul Davis
been left in the the translation
2020-04-29only activate MIDI editing bindings if in actual internal edit mode.Paul Davis
Draw mode does not as internal editing for these purposes
2020-04-30Update script menu in the wake of 95932f92deRobin Gareus
2020-04-28Update Japanese translation for 6.0Hiroki Inagaki
2020-04-28Revise French translation, part 7 -- #8035Robin Gareus
2020-04-28tweak minitimeline methods and names to avoid too-early and unnecessary ↵Paul Davis
calls to ::set_colors()
2020-04-28remove unnecessary call to set_colors()Paul Davis
This call also happens before colors are even defined
2020-04-28Remove redundant action prefixRobin Gareus
From Ardour5 to Ardour6 the AccessAction handle changes from "Editor/script-action-<N>" to "LuaAction/script-<N>"
2020-04-28Revise French translation, part 6 -- #8035Robin Gareus
2020-04-28Con't work on ALSA nperiod selection (see also d3d120fa)Robin Gareus
2020-04-27Revert "Fix 8061 (partly): Don't scroll down if no further tracks to scroll to"Johannes Mueller
This reverts commit 81cbf36c5693a6b1c70a29871bb2e0df5f83070b. Limiting scrolling has other drawbacks. A proper fix for the redraw issue has to be found.
2020-04-27Fix 8061 (partly): Don't scroll down if no further tracks to scroll toJohannes Mueller
The issue remains if a track is selected by a "fit-selection" action second last track covers the whole trackview. Then when scrolling one track up, the huge track disappears and a smaller track follows, that covers a lot less space. -> Proper redraw of the track view is still needed.
2020-04-26fix design and implementation of (GUI) transport controllables to make them ↵Paul Davis
usable with MIDI CC control The old code meant that their current value was always zero, and that they would do nothing unless the new value exceeded 0.5
2020-04-26Update German translationEdgar Aichinger
2020-04-26Fix translatable strings and translations (so far)Robin Gareus
The typos in the original English were reported by Edgar Aichinger while working on the German translation.
2020-04-25update gtk2_ardour czech translations (Pavel Frich)Paul Davis
2020-04-25Allow to un/link panner directly from the panner #8024Robin Gareus
When editing a sends, this allows to unlink send panner via the panner's context menu. NB. After 6.0-rc string freeze the context menu needs an update. So far the text from the Processor Box context menu is reused.
2020-04-25Redisplay list editor when the region is moved or resizeNil Geisweiller
Using connection list to not overwrite the previous connection
2020-04-25Fix midi editor to only display notes within temporal visible regionNil Geisweiller
2020-04-25Lua Dialog, fill window with single widgetRobin Gareus
This is particularly helpful with a file-selector (e.g. mixer ccreenshot Script)
2020-04-24use ardour button rather than gtk::button in transport master widgetPaul Davis
2020-04-24carefully position floating text entry when editing transport master namesPaul Davis
2020-04-24only update port lists when a TransportMastersWidget is actually mappedPaul Davis
The overhead of rebuilding for every port registration and unregistration was absurd
2020-04-24fix copy-paste error that prevent transport master request mask from being ↵Paul Davis
set correctly
2020-04-24Revise French translation, part 5 -- #8035Fred Rech
2020-04-24Update key-bindings for all Lua action scripts #8034Robin Gareus
2020-04-24Update Russian translationAlexandre Prokoudine
2020-04-24Indicate unlinked send-panners in pan-widget #8024Robin Gareus
2020-04-24Define color for send pannerRobin Gareus
2020-04-24Use send-API for pan-link, indicate status in tooltip and nameRobin Gareus
2020-04-23minor code reworking for 46fca9062d28682 (no semantic changes)Paul Davis