Skip to content

Commit

Permalink
Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
lpeyr committed Nov 30, 2024
1 parent 694601f commit 9ce1db7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions InternetTest/InternetTest/Pages/HomePage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
using InternetTest.Enums;
using InternetTest.UserControls;
using ManagedNativeWifi;
using PeyrSharp.Core;
using PeyrSharp.Env;
using System;
using System.Collections.Generic;
Expand Down Expand Up @@ -67,7 +66,7 @@ internal void InitUI()
{
DiscoverPanel.Children.Add(new PageCard(relevantPages[i]));
}
}
}

private async void SpeedTest_MouseLeftButtonUp(object sender, System.Windows.Input.MouseButtonEventArgs e)
{
Expand Down
2 changes: 1 addition & 1 deletion InternetTest/InternetTest/Pages/SettingsPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -485,5 +485,5 @@ private void ZoomLevelTxt_TextChanged(object sender, TextChangedEventArgs e)
if (string.IsNullOrEmpty(ZoomLevelTxt.Text)) return;
Global.Settings.MapZoomLevel = int.Parse(ZoomLevelTxt.Text);
SettingsManager.Save();
}
}
}

0 comments on commit 9ce1db7

Please sign in to comment.