From 0f0b1bb98ceb9710f16bda55e08f92423a2f5aca Mon Sep 17 00:00:00 2001 From: Knightly Date: Sun, 8 Aug 2010 20:32:05 +0000 Subject: [PATCH] FIX: Vertical alignment of left/right buttons in tab panel header git-svn-id: svn://tron.homeunix.org/simutrans/simutrans/trunk@3635 8aca7d54-2c30-db11-9de9-000461428c89 --- gui/components/gui_tab_panel.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/components/gui_tab_panel.cc b/gui/components/gui_tab_panel.cc index e495ba0c529..2c3d54acdd3 100644 --- a/gui/components/gui_tab_panel.cc +++ b/gui/components/gui_tab_panel.cc @@ -53,8 +53,8 @@ void gui_tab_panel_t::set_groesse(koord gr) } if( required_groesse.x>gr.x ) { - left.set_pos( koord( 2, 2 ) ); - right.set_pos( koord( gr.x-10, 2 ) ); + left.set_pos( koord( 2, 5 ) ); + right.set_pos( koord( gr.x-10, 5 ) ); } }