From e49dc507518a9bf40a70dc1ed1137051dbaba8c9 Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Wed, 16 Jan 2008 07:09:14 +0000 Subject: [PATCH] fix display of button tip --- macosx/TorrentTableView.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/macosx/TorrentTableView.m b/macosx/TorrentTableView.m index 72afe18fd..b8c4caa07 100644 --- a/macosx/TorrentTableView.m +++ b/macosx/TorrentTableView.m @@ -174,7 +174,7 @@ fMouseActionRow = rowVal; else if ([[dict objectForKey: @"Type"] isEqualToString: @"Icon"]) fMouseActionIconRow = rowVal; - if ([[dict objectForKey: @"Type"] isEqualToString: @"Control"]) + else if ([[dict objectForKey: @"Type"] isEqualToString: @"Control"]) fMouseControlRow = rowVal; else fMouseRevealRow = rowVal; @@ -195,7 +195,7 @@ fMouseActionRow = -1; else if ([[dict objectForKey: @"Type"] isEqualToString: @"Icon"]) fMouseActionIconRow = -1; - if ([[dict objectForKey: @"Type"] isEqualToString: @"Control"]) + else if ([[dict objectForKey: @"Type"] isEqualToString: @"Control"]) fMouseControlRow = -1; else fMouseRevealRow = -1;