diff --git a/app/GHelper.csproj b/app/GHelper.csproj
index 78a956de..2fd7dffc 100644
--- a/app/GHelper.csproj
+++ b/app/GHelper.csproj
@@ -15,7 +15,7 @@
AnyCPU
False
True
- 1.0
+ 0.100
diff --git a/app/Settings.cs b/app/Settings.cs
index e98a59da..fe4e7bec 100644
--- a/app/Settings.cs
+++ b/app/Settings.cs
@@ -177,7 +177,10 @@ namespace GHelper
sensorTimer.Enabled = true;
labelBattery.MouseEnter += PanelBattery_MouseEnter;
+ labelBatteryTitle.MouseEnter += PanelBattery_MouseEnter;
+
labelBattery.MouseLeave += PanelBattery_MouseLeave;
+ labelBatteryTitle.MouseLeave += PanelBattery_MouseLeave;
labelModel.Text = AppConfig.GetModelShort() + (ProcessHelper.IsUserAdministrator() ? "." : "");
TopMost = AppConfig.Is("topmost");
@@ -195,7 +198,7 @@ namespace GHelper
private void PanelBattery_MouseLeave(object? sender, EventArgs e)
{
batteryMouseOver = false;
- RefreshSensors();
+ RefreshSensors(true);
}
private void ShowBatteryWear()