summaryrefslogtreecommitdiff
path: root/freefilesync/ffs_desktop_notifications.patch
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-01-04 11:51:01 -0500
committerB. Stack <bgstack15@gmail.com>2022-01-04 11:51:01 -0500
commit24ec0886eada05b870e6c8e45546863fb5c974cd (patch)
tree5ed9986aa74251da4a5492cf7fd88abde1adf260 /freefilesync/ffs_desktop_notifications.patch
parentadd clipboard stuff to prefs.js everywhere (diff)
downloadstackrpms-24ec0886eada05b870e6c8e45546863fb5c974cd.tar.gz
stackrpms-24ec0886eada05b870e6c8e45546863fb5c974cd.tar.bz2
stackrpms-24ec0886eada05b870e6c8e45546863fb5c974cd.zip
ffs 11.16 rc1
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