View Issue Details

IDProjectCategoryView StatusLast Update
0004623ardourbugspublic2015-09-18 15:14
Reportercolinf Assigned Tocolinf  
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
Target Version3.0-beta3 
Summary0004623: Clocks in region properties can't be used to modify region
DescriptionThe clocks in the region properties window can no longer be used to adjust the region's start point, length, &c.

I don't know how long it's been like this, but regions can certainly be adjusted via the clocks in A2's region editor, so I guess this is a regression.
TagsNo tags attached.

Activities

colinf

2012-01-18 19:09

updater   ~0012571

Looks like the clocks just need set_editable() calling on them to restore this behaviour: patch to follow imminently...

2012-01-18 19:10

 

region-editor-editable-clocks.patch (742 bytes)   
Index: gtk2_ardour/region_editor.cc
===================================================================
--- gtk2_ardour/region_editor.cc	(revision 11265)
+++ gtk2_ardour/region_editor.cc	(working copy)
@@ -77,6 +77,13 @@
 	sync_offset_absolute_clock.set_session (_session);
 	start_clock.set_session (_session);
 
+	position_clock.set_editable (true);
+	end_clock.set_editable (true);
+	length_clock.set_editable (true);
+	sync_offset_relative_clock.set_editable (true);
+	sync_offset_absolute_clock.set_editable (true);
+	// start_clock.set_editable (true); // doesn't seem to work, but never did in A2 either
+
 	ARDOUR_UI::instance()->set_tip (audition_button, _("audition this region"));
 
 	audition_button.unset_flags (Gtk::CAN_FOCUS);

cth103

2012-01-24 18:10

administrator   ~0012644

Works for me without this patch in current SVN. Is it still a problem?

colinf

2012-01-24 18:22

updater   ~0012645

Well, this is working for me now without the patch, so something else must have fixed it meanwhile. I guess this report can be closed now.

colinf

2015-09-18 15:14

updater   ~0017259

Closing old issues reported by me: these have long since been fixed.

Issue History

Date Modified Username Field Change
2012-01-10 17:36 colinf New Issue
2012-01-10 20:44 cth103 cost => 0.00
2012-01-10 20:44 cth103 Target Version => 3.0-beta3
2012-01-18 19:09 colinf Note Added: 0012571
2012-01-18 19:10 colinf File Added: region-editor-editable-clocks.patch
2012-01-24 18:10 cth103 Note Added: 0012644
2012-01-24 18:10 cth103 Status new => feedback
2012-01-24 18:22 colinf Note Added: 0012645
2012-01-24 18:22 colinf Status feedback => resolved
2012-01-24 18:22 colinf Resolution open => fixed
2012-01-24 18:22 colinf Assigned To => colinf
2015-09-18 15:14 colinf Note Added: 0017259
2015-09-18 15:14 colinf Status resolved => closed