e1d2cea54a
- Update to 12.3: * Add custom notes to sync configurations * Highlight comparison and sync buttons * Show sync stats in config panel tool tip * Update config panel sync info even if cancelled * Support FTP listing format missing owner/group * Fixed "Class not registered" error during installation * Propagate process priority of launcher executable * Fixed config panel metadata being reset after renaming * Fixed config panel keyboard cursor after deletion/rename * Improved small icon resolution for high-DPI monitors - Update icons to be 128x128 - Add missing Animals.dat file - Drop FreeFileSync-fix-error.patch - Update to 12.2: * Fixed temporary access error when creating multiple folders in parallel * Log failure to copy folder attributes as warning only * Enable UTF-8, even if FTP server does not advertize in FEAT (vsftpd) * Fixed drag and drop for non-ASCII folders (macOS) * Explicitly detect MTP path without existence check * Fixed crash when parsing SFTP package from stream * Fixed missing COM initialization for MTP path parsing - Add FreeFileSync-fix-error.patch to fix build with gcc13. OBS-URL: https://build.opensuse.org/request/show/1088058 OBS-URL: https://build.opensuse.org/package/show/network/FreeFileSync?expand=0&rev=65
14 lines
640 B
Diff
14 lines
640 B
Diff
Index: FreeFileSync-12.3/FreeFileSync/Source/base/icon_loader.cpp
|
|
===================================================================
|
|
--- FreeFileSync-12.3.orig/FreeFileSync/Source/base/icon_loader.cpp
|
|
+++ FreeFileSync-12.3/FreeFileSync/Source/base/icon_loader.cpp
|
|
@@ -227,7 +227,7 @@ FileIconHolder fff::getFileIcon(const Zs
|
|
//the remaining icon types won't block!
|
|
assert(GDK_IS_PIXBUF(gicon) || G_IS_THEMED_ICON(gicon) || G_IS_EMBLEMED_ICON(gicon));
|
|
|
|
- ::g_object_ref(gicon); //pass ownership
|
|
+ //::g_object_ref(gicon); //pass ownership
|
|
return FileIconHolder(gicon, maxSize); //
|
|
|
|
}
|