From c19f34570df19b8235aaf94a6ef46bbc1a85fab9 Mon Sep 17 00:00:00 2001 From: leetthewire Date: Thu, 14 Apr 2022 16:41:39 -0700 Subject: [PATCH] first build --- client/containers/containers_defs.cpp | 2 +- client/ui/notificationhandler.cpp | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/client/containers/containers_defs.cpp b/client/containers/containers_defs.cpp index 48d71d3f..627f75d1 100644 --- a/client/containers/containers_defs.cpp +++ b/client/containers/containers_defs.cpp @@ -162,7 +162,7 @@ bool ContainerProps::isSupportedByCurrentPlatform(DockerContainer c) } #elif defined (Q_OS_LINUX) - return false; + return true; #else return false; diff --git a/client/ui/notificationhandler.cpp b/client/ui/notificationhandler.cpp index 81f6430a..ed6a11e3 100644 --- a/client/ui/notificationhandler.cpp +++ b/client/ui/notificationhandler.cpp @@ -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" @@ -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);