Skip to content
This repository was archived by the owner on Oct 30, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions src/systray/customtrayicon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,15 @@
CustomTrayIcon::CustomTrayIcon(QObject* parent) : QSystemTrayIcon(parent)
{

/*#ifdef Q_OS_MAC
// Yes the files names are inverted...
this->iconActive = QIcon(":/images/flat.sips.png");
this->iconTransfer = QIcon(":/images/PydioSync-Systray-Windows-Transfer.png");
this->iconInactive = QIcon(":/images/PydioSync-Systray-Mac-Inactive.png");
#else*/
#ifdef Q_OS_LINUX
this->iconActive = QIcon(":/images/PydioSync-Systray-Linux.png");
this->iconTransfer = QIcon(":/images/PydioSync-Systray-Linux-Transfer.png");
this->iconInactive = QIcon(":/images/PydioSync-Systray-Linux-Inactive.png");
#else
this->iconActive = QIcon(":/images/PydioSync-Systray-Mac.png");
this->iconTransfer = QIcon(":/images/PydioSync-Systray-Mac-Transfer.png");
this->iconInactive = QIcon(":/images/PydioSync-Systray-Mac-Inactive.png");
//#endif
#endif

this->debugMode = true;
this->pathToWinAgent = pathToWinAgent;
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/systray/images/PydioSync-Systray-Linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/systray/systray.qrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
<file>images/PydioSync-Systray-Mac.png</file>
<file>images/PydioSync-Systray-Windows-Transfer.png</file>
<file>images/PydioSync-Systray-Mac-Inactive.png</file>
<file>images/PydioSync-Systray-Linux-Transfer.png</file>
<file>images/PydioSync-Systray-Linux.png</file>
<file>images/PydioSync-Systray-Linux-Inactive.png</file>
<file>images/folder-32.png</file>
<file>images/PydioSync-Systray-Windows.png</file>
</qresource>
Expand Down