1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-25 01:02:24 +00:00

Fix an always-false if statement which was causing the window border

not to be redrawn when the user reconfigured the background colour.

[originally from svn r9917]
This commit is contained in:
Simon Tatham 2013-07-14 10:45:48 +00:00
parent cc4f38df14
commit 1662a2f6cf

View File

@ -3069,7 +3069,7 @@ void change_settings_menuitem(GtkMenuItem *item, gpointer data)
* repaint the space in between the window border
* and the text area.
*/
if (i == 258) {
if (ww[i] == 258) {
set_window_background(inst);
draw_backing_rect(inst);
}