mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Code cleanup
This commit is contained in:
parent
3966290a08
commit
2ea303f557
2 changed files with 3 additions and 5 deletions
|
|
@ -20,7 +20,6 @@
|
|||
Closing="OnClosing"
|
||||
Deactivated="OnDeactivated"
|
||||
Icon="Images/app.png"
|
||||
SourceInitialized="OnSourceInitialized"
|
||||
Initialized="OnInitialized"
|
||||
Left="{Binding Settings.WindowLeft, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
|
||||
Loaded="OnLoaded"
|
||||
|
|
@ -31,6 +30,7 @@
|
|||
ResizeMode="CanResize"
|
||||
ShowInTaskbar="False"
|
||||
SizeToContent="Height"
|
||||
SourceInitialized="OnSourceInitialized"
|
||||
Topmost="True"
|
||||
Visibility="{Binding MainWindowVisibility, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
|
||||
WindowStartupLocation="Manual"
|
||||
|
|
@ -377,7 +377,7 @@
|
|||
Style="{DynamicResource SeparatorStyle}" />
|
||||
</ContentControl>
|
||||
</Grid>
|
||||
|
||||
|
||||
<Border Style="{DynamicResource WindowRadius}">
|
||||
<Border.Clip>
|
||||
<MultiBinding Converter="{StaticResource BorderClipConverter}">
|
||||
|
|
|
|||
|
|
@ -36,9 +36,7 @@ namespace Flow.Launcher
|
|||
public partial class MainWindow
|
||||
{
|
||||
#region Private Fields
|
||||
|
||||
private readonly Storyboard _progressBarStoryboard = new Storyboard();
|
||||
private bool isProgressBarStoryboardPaused;
|
||||
|
||||
private readonly Settings _settings;
|
||||
private NotifyIcon _notifyIcon;
|
||||
private readonly ContextMenu contextMenu = new();
|
||||
|
|
|
|||
Loading…
Reference in a new issue