Skip to content

Commit

Permalink
Revert the safeguard for the missing FROM keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
C1rdec committed Dec 18, 2024
1 parent 7b77cca commit 350557d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/PoeLurker.Core/PoeLurker.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<PackageReference Include="HtmlAgilityPack" Version="1.11.71" />
<PackageReference Include="NAudio" Version="2.2.1" />
<PackageReference Include="NLog" Version="5.3.4" />
<PackageReference Include="PoeLurker.Patreon" Version="8.2.12" />
<PackageReference Include="PoeLurker.Patreon" Version="8.2.13" />
<PackageReference Include="ProcessLurker" Version="8.0.1" />
<PackageReference Include="SharpClipboard" Version="3.5.2" />
<PackageReference Include="TextCopy" Version="6.2.1" />
Expand Down
2 changes: 1 addition & 1 deletion src/PoeLurker.UI/PoeLurker.UI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
<PackageReference Include="NLog" Version="5.3.4" />
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.15" />
<PackageReference Include="PixiEditor.ColorPicker" Version="3.4.1" />
<PackageReference Include="PoeLurker.Patreon" Version="8.2.12" />
<PackageReference Include="PoeLurker.Patreon" Version="8.2.13" />
<PackageReference Include="System.Private.Uri" Version="4.3.2" />
<PackageReference Include="Velopack" Version="0.0.942" />
</ItemGroup>
Expand Down
5 changes: 0 additions & 5 deletions src/PoeLurker.UI/ViewModels/TradebarViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -302,11 +302,6 @@ private void ExecuteOnRecentOffer(Action<OfferViewModel> action, Func<OfferViewM
/// <param name="e">The trade event.</param>
private async void Lurker_IncomingOffer(object sender, TradeEvent e)
{
if (!PoeApplicationContext.IsAfk && (!PoeApplicationContext.InForeground || _clipboardLurker.LastClipboardText.Contains(e.WhisperMessage)))
{
return;
}

if (TradeOffers.Any(o => o.Event.Equals(e)))
{
return;
Expand Down
8 changes: 4 additions & 4 deletions src/PoeLurker.UI/Views/SettingsView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -486,10 +486,10 @@
<Controls:ToggleSwitch Margin="30,0,0,0"
Header="Incoming Trade"
IsOn="{Binding IncomingTradeEnabled}" />
<!--<Controls:ToggleSwitch Margin="-30,0,0,0"
<Controls:ToggleSwitch Margin="-30,0,0,0"
Header="Outgoing Trade"
IsOn="{Binding OutgoingTradeEnabled}" />-->
<!--<Grid Visibility="{Binding OutgoingTradeEnabled, Converter={StaticResource BooleanToVisibilityConverter}}">
IsOn="{Binding OutgoingTradeEnabled}" />
<Grid Visibility="{Binding OutgoingTradeEnabled, Converter={StaticResource BooleanToVisibilityConverter}}">
<TextBlock Grid.Column="1"
HorizontalAlignment="Center"
VerticalAlignment="Top"
Expand All @@ -506,7 +506,7 @@
Orientation="Horizontal"
SmallChange="0.1"
Value="{Binding DelayToClose}" />
</Grid>-->
</Grid>
</StackPanel>
<StackPanel Grid.Row="1"
Margin="0,10,0,0"
Expand Down

0 comments on commit 350557d

Please sign in to comment.