mirror of
https://github.com/tnodir/fort
synced 2024-11-15 05:36:09 +00:00
UI: Update icon
This commit is contained in:
parent
5394630be4
commit
ada64a6887
@ -391,7 +391,7 @@ void ApplicationsPage::setupGroupOptions()
|
||||
|
||||
auto menu = ControlUtil::createMenuByLayout(layout, this);
|
||||
|
||||
m_btGroupOptions = ControlUtil::createButton(":/icons/gear_in.png");
|
||||
m_btGroupOptions = ControlUtil::createButton(":/icons/wrench.png");
|
||||
m_btGroupOptions->setMenu(menu);
|
||||
}
|
||||
|
||||
|
@ -160,7 +160,7 @@ void ConnectionsPage::setupOptions()
|
||||
|
||||
auto menu = ControlUtil::createMenuByLayout(layout, this);
|
||||
|
||||
m_btOptions = ControlUtil::createButton(":/icons/gear_in.png");
|
||||
m_btOptions = ControlUtil::createButton(":/icons/wrench.png");
|
||||
m_btOptions->setMenu(menu);
|
||||
}
|
||||
|
||||
|
@ -153,7 +153,7 @@ QLayout *ServicesWindow::setupHeader()
|
||||
// Edit Menu
|
||||
auto editMenu = ControlUtil::createMenu(this);
|
||||
|
||||
m_actTrack = editMenu->addAction(IconCache::icon(":/icons/gear_in.png"), QString());
|
||||
m_actTrack = editMenu->addAction(IconCache::icon(":/icons/wrench.png"), QString());
|
||||
m_actRevert = editMenu->addAction(IconCache::icon(":/icons/bin_closed.png"), QString());
|
||||
|
||||
m_actAddProgram = editMenu->addAction(IconCache::icon(":/icons/application.png"), QString());
|
||||
@ -188,7 +188,7 @@ QLayout *ServicesWindow::setupHeader()
|
||||
m_btEdit->setMenu(editMenu);
|
||||
|
||||
// Toolbar buttons
|
||||
m_btTrack = ControlUtil::createLinkButton(":/icons/gear_in.png");
|
||||
m_btTrack = ControlUtil::createLinkButton(":/icons/wrench.png");
|
||||
m_btRevert = ControlUtil::createLinkButton(":/icons/bin_closed.png");
|
||||
m_btRefresh = ControlUtil::createButton(":/icons/arrow_refresh_small.png");
|
||||
|
||||
|
@ -25,7 +25,6 @@
|
||||
<file>icons/error.png</file>
|
||||
<file>icons/filter.png</file>
|
||||
<file>icons/folder.png</file>
|
||||
<file>icons/gear_in.png</file>
|
||||
<file>icons/github.png</file>
|
||||
<file>icons/global_telecom.png</file>
|
||||
<file>icons/hostname.png</file>
|
||||
@ -44,5 +43,6 @@
|
||||
<file>icons/server_components.png</file>
|
||||
<file>icons/time.png</file>
|
||||
<file>icons/windows-48.png</file>
|
||||
<file>icons/wrench.png</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 2.1 KiB |
BIN
src/ui/icons/wrench.png
Normal file
BIN
src/ui/icons/wrench.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
@ -108,7 +108,7 @@ QVariant ServiceListModel::dataDecoration(const QModelIndex &index) const
|
||||
const auto info = serviceInfoAt(row);
|
||||
|
||||
if (info.isTracked())
|
||||
return IconCache::icon(":/icons/gear_in.png");
|
||||
return IconCache::icon(":/icons/wrench.png");
|
||||
}
|
||||
|
||||
return QVariant();
|
||||
|
Loading…
Reference in New Issue
Block a user