mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-26 09:42:25 +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:
parent
cc4f38df14
commit
1662a2f6cf
@ -3069,7 +3069,7 @@ void change_settings_menuitem(GtkMenuItem *item, gpointer data)
|
|||||||
* repaint the space in between the window border
|
* repaint the space in between the window border
|
||||||
* and the text area.
|
* and the text area.
|
||||||
*/
|
*/
|
||||||
if (i == 258) {
|
if (ww[i] == 258) {
|
||||||
set_window_background(inst);
|
set_window_background(inst);
|
||||||
draw_backing_rect(inst);
|
draw_backing_rect(inst);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user