View Issue Details

IDProjectCategoryView StatusLast Update
0002441ardourbugspublic2012-01-10 18:01
Reportercolinf Assigned Topaul  
PrioritynormalSeveritytweakReproducibilityalways
Status closedResolutionfixed 
Product VersionSVN/2.0-ongoing 
Summary0002441: Some LADSPA plugin windows are too wide for small screens
DescriptionThe windows displayed to adjust LADSPA plugins with many parameters are too wide to fit on my laptop's 1024x768 screen.

Here's a patch to put 20 controls per column, rather than 7 as previously. This makes it much nicer for me (of course, people with wider screens may beg to differ)...
TagsNo tags attached.

Activities

2008-11-06 20:30

 

more-controls-per-column.patch (456 bytes)   
Index: gtk2_ardour/generic_pluginui.cc
===================================================================
--- gtk2_ardour/generic_pluginui.cc	(revision 4097)
+++ gtk2_ardour/generic_pluginui.cc	(working copy)
@@ -191,7 +191,7 @@
 			/* if we are scrollable, just use one long column */
 
 			if (!is_scrollable) {
-				if (x++ > 7){
+				if (x++ > 20){
 					frame = manage (new Frame);
 					frame->set_name ("BaseFrame");
 					box = manage (new VBox);

nowhiskey

2008-11-06 20:58

reporter   ~0005226

this patch is working for me absolutely great!
esp. cause i am using the 4-band parametric in almost every track, and on my screen it was always about grabbing the window and moving it around to reach some of the parameter.

cheers,
doc

seablade

2008-11-24 11:33

manager   ~0005328

Assigned to Paul to check the patch.

       Seablade

paul

2008-11-26 21:34

administrator   ~0005379

patch committed in rev 4266.

colinf

2012-01-10 18:01

updater   ~0012538

Closing my old issues: this is long since fixed.

Issue History

Date Modified Username Field Change
2008-11-06 20:29 colinf New Issue
2008-11-06 20:30 colinf File Added: more-controls-per-column.patch
2008-11-06 20:58 nowhiskey Note Added: 0005226
2008-11-24 11:33 seablade Status new => assigned
2008-11-24 11:33 seablade Assigned To => paul
2008-11-24 11:33 seablade Note Added: 0005328
2008-11-26 21:34 paul cost => 0.00
2008-11-26 21:34 paul Status assigned => resolved
2008-11-26 21:34 paul Resolution open => fixed
2008-11-26 21:34 paul Note Added: 0005379
2010-04-24 10:28 cth103 Category bugs => bugs2
2010-04-24 10:32 cth103 Category bugs2 => bugs
2012-01-10 18:01 colinf Note Added: 0012538
2012-01-10 18:01 colinf Status resolved => closed