mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-17 09:42:38 +03:00
Fix redundant if/else.
This commit is contained in:
parent
8b0d969bd6
commit
4bbc541640
@ -107,12 +107,8 @@ static void atari_hotlist_mouse_action(struct core_window *cw,
|
||||
int x, int y)
|
||||
{
|
||||
LOG(("x: %d, y: %d\n", x, y));
|
||||
if((mouse & BROWSER_MOUSE_HOVER) && hotlist_has_selection()){
|
||||
hotlist_mouse_action(mouse, x, y);
|
||||
} else {
|
||||
hotlist_mouse_action(mouse, x, y);
|
||||
}
|
||||
|
||||
hotlist_mouse_action(mouse, x, y);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user