summaryrefslogtreecommitdiff
path: root/debian/patches/35_fix_xtermset.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/35_fix_xtermset.patch')
-rw-r--r--debian/patches/35_fix_xtermset.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/debian/patches/35_fix_xtermset.patch b/debian/patches/35_fix_xtermset.patch
new file mode 100644
index 0000000..896ddcc
--- /dev/null
+++ b/debian/patches/35_fix_xtermset.patch
@@ -0,0 +1,14 @@
+When xtermset_enable is set, jack resizes the window to something that is
+not high enough.
+
+--- jack_term.py~ 2006-05-16 18:09:55.000000000 +0200
++++ jack_term.py 2006-05-16 18:10:22.000000000 +0200
+@@ -106,7 +106,7 @@
+ want_y = want_y - 1
+ if jack_freedb.names_available:
+ want_y = want_y + 1
+- want_y = max(want_y, 7)
++ want_y += 7 # for the help panel
+ if (size_x, size_y) != (want_x, want_y):
+ try:
+ os.system("xtermset -geom %dx%d" % (want_x, want_y))