Skip to content

Commit

Permalink
Small trayIcon fix woring icon name
Browse files Browse the repository at this point in the history
  • Loading branch information
nicola02nb committed Sep 19, 2024
1 parent ee7d118 commit 19e075e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/UI/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ void MainWindow::setBatteryStatus()
if (status == "BATTERY_UNAVAILABLE") {
ui->batteryPercentage->setText(tr("Headset Off"));
trayIcon->setToolTip(tr("HeadsetControl \r\nHeadset Off"));
changeTrayIconTo("headphones-light");
changeTrayIconTo("headphones");
} else if (status == "BATTERY_CHARGING") {
ui->batteryPercentage->setText(level + tr("% - Charging"));
trayIcon->setToolTip(tr("HeadsetControl \r\nBattery Charging"));
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <QTranslator>

const QString APP_NAME = "HeadsetControl-GUI";
const QString GUI_VERSION = "0.16.7";
const QString GUI_VERSION = "0.16.8";

int main(int argc, char *argv[])
{
Expand Down

0 comments on commit 19e075e

Please sign in to comment.