mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-01-18 00:29:31 +03:00
Fix missmatched bracket.
This commit is contained in:
parent
4af70cd1ac
commit
60877b6ff5
@ -4712,7 +4712,7 @@ static void gui_window_set_scroll(struct gui_window *g, int sx, int sy)
|
||||
|
||||
if(sx >= width - bbox->Width)
|
||||
sx = width - bbox->Width;
|
||||
if(sy >= height - bbox->Height))
|
||||
if(sy >= height - bbox->Height)
|
||||
sy = height - bbox->Height;
|
||||
|
||||
if(width <= bbox->Width) sx = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user