Skip to content

Commit

Permalink
fix: fix incorrect bluetooth activation status icon in the tray quick…
Browse files Browse the repository at this point in the history
… panel (linuxdeepin#279)

fix incorrect bluetooth activation status icon in the tray quick panel.

Log: fix incorrect bluetooth activation status icon in the tray quick panel
issue: linuxdeepin/developer-center#8237
Influence: bluetooth activation status icon display
  • Loading branch information
yixinshark authored and FeiWang1119 committed Jul 5, 2024
1 parent c0982ec commit bc96fae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panels/dock/tray/plugins/bluetooth/bluetoothmainwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ void BluetoothMainWidget::initUi()
m_iconButton->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
m_iconButton->setFocusPolicy(Qt::FocusPolicy::TabFocus);
m_iconButton->setIconSize({24, 24});
m_iconButton->setIcon(QIcon(bluetoothIcon(true)));
m_iconButton->setIcon(QIcon::fromTheme("bluetooth"));
m_iconButton->setCheckable(true);
m_iconButton->setChecked(isOpen());
m_iconButton->setFocusPolicy(Qt::NoFocus);
Expand Down

0 comments on commit bc96fae

Please sign in to comment.