Skip to content

Commit

Permalink
first build
Browse files Browse the repository at this point in the history
  • Loading branch information
leetthewire committed Apr 14, 2022
1 parent e9f44ff commit c19f345
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion client/containers/containers_defs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ bool ContainerProps::isSupportedByCurrentPlatform(DockerContainer c)
}

#elif defined (Q_OS_LINUX)
return false;
return true;

#else
return false;
Expand Down
8 changes: 4 additions & 4 deletions client/ui/notificationhandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#else

# if defined(Q_OS_LINUX)
# include "platforms/linux/linuxsystemtraynotificationhandler.h"
# //include "platforms/linux/linuxsystemtraynotificationhandler.h"
# endif

# include "systemtray_notificationhandler.h"
Expand All @@ -27,9 +27,9 @@ NotificationHandler* NotificationHandler::create(QObject* parent) {
#else

# if defined(Q_OS_LINUX)
if (LinuxSystemTrayNotificationHandler::requiredCustomImpl()) {
return new LinuxSystemTrayNotificationHandler(parent);
}
//if (LinuxSystemTrayNotificationHandler::requiredCustomImpl()) {
// return new LinuxSystemTrayNotificationHandler(parent);
//}
# endif

return new SystemTrayNotificationHandler(parent);
Expand Down

0 comments on commit c19f345

Please sign in to comment.