summaryrefslogtreecommitdiff
path: root/freefilesync/ffs_desktop_notifications.patch
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-02-21 16:01:20 -0500
committerB. Stack <bgstack15@gmail.com>2023-02-21 16:01:20 -0500
commit670e0b11d74f0a8b03b848432274ee23f3f61534 (patch)
treec11e7f30c890747c0cec5383b78f2808c6fa65e8 /freefilesync/ffs_desktop_notifications.patch
parentMerge branch 'scite-bump' into 'master' (diff)
downloadstackrpms-670e0b11d74f0a8b03b848432274ee23f3f61534.tar.gz
stackrpms-670e0b11d74f0a8b03b848432274ee23f3f61534.tar.bz2
stackrpms-670e0b11d74f0a8b03b848432274ee23f3f61534.zip
ffs 12.1 rc1
Diffstat (limited to 'freefilesync/ffs_desktop_notifications.patch')
-rw-r--r--freefilesync/ffs_desktop_notifications.patch8
1 files changed, 4 insertions, 4 deletions
diff --git a/freefilesync/ffs_desktop_notifications.patch b/freefilesync/ffs_desktop_notifications.patch
index 5989a9c..5ca971b 100644
--- a/freefilesync/ffs_desktop_notifications.patch
+++ b/freefilesync/ffs_desktop_notifications.patch
@@ -1,5 +1,5 @@
-Version: 11.25
-Date: 2022-09-14
+Version: 12.0
+Date: 2023-01-23
Author: bgstack15
Message: Add support for building with desktop notification support.
--- a/FreeFileSync/Source/Makefile
@@ -20,7 +20,7 @@ Message: Add support for building with desktop notification support.
ifeq ($(SELINUX_EXISTING),YES)
--- a/FreeFileSync/Source/ui/progress_indicator.cpp
+++ b/FreeFileSync/Source/ui/progress_indicator.cpp
-@@ -31,6 +31,9 @@
+@@ -30,6 +30,9 @@
#include "../icon_buffer.h"
#include "../base/speed_test.h"
@@ -30,7 +30,7 @@ Message: Add support for building with desktop notification support.
using namespace zen;
using namespace fff;
-@@ -1377,6 +1380,22 @@ void SyncProgressDialogImpl<TopLevelDial
+@@ -1368,6 +1371,22 @@ void SyncProgressDialogImpl<TopLevelDial
pnl_.m_staticTextPhase->SetLabelText(getSyncResultLabel(syncResult));
//pnl_.m_bitmapStatus->SetToolTip(); -> redundant
bgstack15