From: Carl Worth Date: Sat, 17 Sep 2011 23:06:34 +0000 (-0700) Subject: Increase the default staff height just a bit. X-Git-Url: https://git.cworth.org/git?p=scherzo;a=commitdiff_plain;h=725f5e37b25a05b69782b223d9de53b182cdc9b2 Increase the default staff height just a bit. At a height of 48, it's more comfortable to view, (while still having a line_width of 1.0 for the staff lines). --- diff --git a/scherzo.c b/scherzo.c index ae8ea32..6a04de9 100644 --- a/scherzo.c +++ b/scherzo.c @@ -115,7 +115,7 @@ main (int argc, char *argv[]) gtk_init (&argc, &argv); scherzo.score = score_create (NULL); - scherzo.staff_height = 24; + scherzo.staff_height = 48; score_set_staff_height (scherzo.score, scherzo.staff_height); window = gtk_window_new (GTK_WINDOW_TOPLEVEL);