all repos — fluxbox @ 3ae7b81ae106db4c169996e21d1d196929af4b33

custom fork of the fluxbox windowmanager

fbtk, textbox, limit selection height to font size
Pete Beardmore pete.beardmore@msn.com
commit

3ae7b81ae106db4c169996e21d1d196929af4b33

parent

375e41bb37da296e5d7803c7ea97d9320516cba7

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/FbTk/TextBox.ccsrc/FbTk/TextBox.cc

@@ -235,7 +235,7 @@ XGCValues backup;

XGetGCValues(dpy, gc(), GCForeground|GCBackground, &backup); XSetForeground(dpy, gc(), backup.foreground); - fillRectangle(gc(), x, 0, width, height()); + fillRectangle(gc(), x, (height()-font().height())/2, width, font().height()); XColor c; c.pixel = backup.foreground;