Remove Find...it doesn't work right and isn't too important anyways.

This commit is contained in:
Mitchell Livingston 2006-09-01 15:30:44 +00:00
parent 82a33fa0f6
commit 4d0bc33f92
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -135,6 +135,8 @@
- (void) changeLevel: (id) sender
{
[self updateLog: nil];
int selection = [fLevelButton indexOfSelectedItem], level;
if (selection == LEVEL_INFO)
level = TR_MSG_INF;
@ -143,8 +145,6 @@
else
level = TR_MSG_ERR;
[self updateLog: nil];
tr_setMessageLevel(level);
[[NSUserDefaults standardUserDefaults] setInteger: level forKey: @"MessageLevel"];
}