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:
uid67456 2004-01-23 22:16:32 +00:00
parent d7e2188826
commit 8658683b50

View file

@ -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;