mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Cleanup PendingLineStyle
This commit is contained in:
parent
5d2778a7ab
commit
e862b3861d
2 changed files with 2 additions and 3 deletions
|
|
@ -331,7 +331,6 @@
|
|||
HorizontalAlignment="Center"
|
||||
VerticalAlignment="Bottom"
|
||||
StrokeThickness="2"
|
||||
Style="{DynamicResource PendingLineStyle}"
|
||||
Visibility="{Binding ProgressBarVisibility, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
|
||||
X1="-100"
|
||||
X2="0"
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@ using DataObject = System.Windows.DataObject;
|
|||
using System.Windows.Media;
|
||||
using System.Windows.Interop;
|
||||
using Windows.Win32;
|
||||
using System.Windows.Shapes;
|
||||
|
||||
namespace Flow.Launcher
|
||||
{
|
||||
|
|
@ -460,8 +461,7 @@ namespace Flow.Launcher
|
|||
trigger.EnterActions.Add(beginStoryboard);
|
||||
trigger.ExitActions.Add(stopStoryboard);
|
||||
|
||||
|
||||
var progressStyle = new Style(typeof(System.Windows.Shapes.Line))
|
||||
var progressStyle = new Style(typeof(Line))
|
||||
{
|
||||
BasedOn = FindResource("PendingLineStyle") as Style
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue