summaryrefslogtreecommitdiff
path: root/freefilesync/debian/patches/ffs_desktop_notifications.patch
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-01-04 18:30:53 +0000
committerB. Stack <bgstack15@gmail.com>2022-01-04 18:30:53 +0000
commitcdad9f9b2ad0cc90909e3c1ffb4d07e8b5b7da35 (patch)
treef06427c8117e103cc4ca6f641a444fcf32a166bc /freefilesync/debian/patches/ffs_desktop_notifications.patch
parentadd clipboard stuff to prefs.js everywhere (diff)
parentdisable openssl patch for fc36/rawhide (diff)
downloadstackrpms-cdad9f9b2ad0cc90909e3c1ffb4d07e8b5b7da35.tar.gz
stackrpms-cdad9f9b2ad0cc90909e3c1ffb4d07e8b5b7da35.tar.bz2
stackrpms-cdad9f9b2ad0cc90909e3c1ffb4d07e8b5b7da35.zip
Merge branch 'freefilesync-bump' into 'master'
Freefilesync bump See merge request bgstack15/stackrpms!278
Diffstat (limited to 'freefilesync/debian/patches/ffs_desktop_notifications.patch')
-rw-r--r--freefilesync/debian/patches/ffs_desktop_notifications.patch8
1 files changed, 6 insertions, 2 deletions
diff --git a/freefilesync/debian/patches/ffs_desktop_notifications.patch b/freefilesync/debian/patches/ffs_desktop_notifications.patch
index 5610fd1..121616a 100644
--- a/freefilesync/debian/patches/ffs_desktop_notifications.patch
+++ b/freefilesync/debian/patches/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