change the short spacing between buttons to 21...
...as a compromise which fixes the graphical glitches (bug #10850) and still looks good in lower resolutions (especially 800x600)
This commit is contained in:
parent
ffa0c83922
commit
1832d8b37f
1 changed files with 2 additions and 1 deletions
|
@ -483,9 +483,10 @@ void preferences_dialog::update_location(SDL_Rect const &rect)
|
|||
const int short_interline = 20;
|
||||
const int item_interline = 20;
|
||||
#else
|
||||
// please also check 800x600 resolution if you change these spacings
|
||||
const int top_border = 28;
|
||||
const int bottom_border = 40;
|
||||
const int short_interline = 24;
|
||||
const int short_interline = 21;
|
||||
const int item_interline = 40;
|
||||
#endif
|
||||
const int bottom_row_y = rect.y + rect.h - bottom_border;
|
||||
|
|
Loading…
Add table
Reference in a new issue