Skip to content

Commit

Permalink
Verified food and oxygen stats
Browse files Browse the repository at this point in the history
  • Loading branch information
jamckee authored and Rottenbeer committed Aug 4, 2019
1 parent 00266c4 commit 3ad1342
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LarkatorGUI/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@
<Grid Margin="16,0,16,16" Visibility="{Binding NewSearchActive, Converter={StaticResource BoolToVisibilityConverter}}" Background="#44ffffff">
<StackPanel Margin="8" Orientation="Vertical" HorizontalAlignment="Stretch" DataContext="{Binding NewSearch}">
<ComboBox x:Name="groupsCombo" Text="{Binding Group}" IsEditable="True" SelectedIndex="0"/>
<ComboBox x:Name="speciesCombo" Text="{Binding Species}"/>
<ComboBox x:Name="speciesCombo" Text="{Binding Species}" IsEditable="True" />
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Margin="4">
<TextBlock Text="Min"/>
<TextBlock Text="{Binding MinLevel, ConverterParameter=-, Converter={StaticResource OptionalIntConverter}}" MinWidth="64" MouseWheel="AdjustableInteger_MouseWheel"/>
Expand Down
3 changes: 2 additions & 1 deletion LarkatorGUI/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ public MainWindow()
}, DispatcherPriority.Loaded);

LoadSavedSearches();
adjustSearchColumns();
SetupFileWatcher();

var cmdThrowExceptionAndExit = new RoutedCommand();
Expand Down Expand Up @@ -901,7 +902,7 @@ private void OnSettingsChanged()
UpdateCurrentSearch();

ForceFontSizeUpdate();

adjustSearchColumns();
reloadTimer.Interval = TimeSpan.FromMilliseconds(Properties.Settings.Default.ConvertDelay);
}

Expand Down

0 comments on commit 3ad1342

Please sign in to comment.