summaryrefslogtreecommitdiff
path: root/freefilesync/ffs_desktop_notifications.patch
diff options
context:
space:
mode:
Diffstat (limited to 'freefilesync/ffs_desktop_notifications.patch')
-rw-r--r--freefilesync/ffs_desktop_notifications.patch8
1 files changed, 6 insertions, 2 deletions
diff --git a/freefilesync/ffs_desktop_notifications.patch b/freefilesync/ffs_desktop_notifications.patch
index 5610fd1..121616a 100644
--- a/freefilesync/ffs_desktop_notifications.patch
+++ b/freefilesync/ffs_desktop_notifications.patch
@@ -1,3 +1,7 @@
+Version: 11.16
+Date: 2022-01-04
+Author: bgstack15
+Message: Add support for building with desktop notification support.
diff -aur 11.9-1/FreeFileSync/Source/Makefile 11.9-2/FreeFileSync/Source/Makefile
--- 11.9-1/FreeFileSync/Source/Makefile 2021-05-06 16:24:53.987902373 -0400
+++ 11.9-2/FreeFileSync/Source/Makefile 2021-05-06 17:09:31.512474440 -0400
@@ -28,8 +32,8 @@ diff -aur 11.9-1/FreeFileSync/Source/ui/progress_indicator.cpp 11.9-2/FreeFileSy
using namespace zen;
using namespace fff;
-@@ -1359,6 +1362,22 @@
- pnl_.m_staticTextPhase->SetLabel(getSyncResultLabel(syncResult));
+@@ -1358,6 +1361,22 @@
+ pnl_.m_staticTextPhase->SetLabelText(getSyncResultLabel(syncResult));
//pnl_.m_bitmapStatus->SetToolTip(); -> redundant
+#ifdef with_notifications
bgstack15