diff options
author | fluxgen <fluxgen> | 2002-10-15 17:37:28 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2002-10-15 17:37:28 (GMT) |
commit | 41edfdf99fe419a2aef43bb6b18236669b836a08 (patch) | |
tree | 0dd2279b778b6106149e0a9b76c03608594cf12b | |
parent | 3e972e83bd2716f7e5941f4ef8edcb67f4f2a3b5 (diff) | |
download | fluxbox-41edfdf99fe419a2aef43bb6b18236669b836a08.zip fluxbox-41edfdf99fe419a2aef43bb6b18236669b836a08.tar.bz2 |
minor adjustment of bevel when drawing text
-rw-r--r-- | src/Window.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Window.cc b/src/Window.cc index f5aac4c..f4b69ee 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Window.cc,v 1.89 2002/10/15 17:17:00 fluxgen Exp $ | 25 | // $Id: Window.cc,v 1.90 2002/10/15 17:37:28 fluxgen Exp $ |
26 | 26 | ||
27 | #include "Window.hh" | 27 | #include "Window.hh" |
28 | 28 | ||
@@ -2439,7 +2439,7 @@ void FluxboxWindow::redrawLabel() { | |||
2439 | screen->getScreenNumber(), | 2439 | screen->getScreenNumber(), |
2440 | gc, | 2440 | gc, |
2441 | getTitle().c_str(), getTitle().size(), | 2441 | getTitle().c_str(), getTitle().size(), |
2442 | frame.bevel_w, frame.bevel_w + screen->getWindowStyle()->font.height()); | 2442 | frame.bevel_w, frame.bevel_w/4 + screen->getWindowStyle()->font.height()); |
2443 | } | 2443 | } |
2444 | } | 2444 | } |
2445 | 2445 | ||