Patch from Jacob that fixes a visual glitch in preferences.cpp...
...when the language is set to danish, or other languages where scroll_label would be longer than both music_label and sound_label.
This commit is contained in:
parent
d7e2188826
commit
8658683b50
1 changed files with 1 additions and 1 deletions
|
@ -410,7 +410,7 @@ void show_preferences_dialog(display& disp)
|
|||
scroll_label,0,0);
|
||||
|
||||
|
||||
const int text_right = xpos + maximum(music_rect.w,sound_rect.w) + 5;
|
||||
const int text_right = xpos + maximum(scroll_rect.w,maximum(music_rect.w,sound_rect.w)) + 5;
|
||||
|
||||
const int music_pos = ypos + title_rect.h + 20;
|
||||
const int sound_pos = music_pos + 50;
|
||||
|
|
Loading…
Add table
Reference in a new issue