From 4bbc541640f245c6ca8d95296ea2cea6817867fa Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Tue, 20 May 2014 17:51:41 +0100 Subject: Fix redundant if/else. --- atari/hotlist.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'atari/hotlist.c') diff --git a/atari/hotlist.c b/atari/hotlist.c index bd1e0f2cd..58c7bee47 100644 --- a/atari/hotlist.c +++ b/atari/hotlist.c @@ -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); } -- cgit v1.2.3