- Update to 11.9 - Save different layouts depending on screen resolution - Fixed large file icon scaling quality (Windows) - Fixed broken default filter excluding DocumentRevisions (macOS) - Don't immediately exit terminal when installer error is showing (Linux) - Explicitly set file permissions when installing missing directories (Linux) - Support installation using noexec temp directory (Linux) - Don't fail installation if root is the only user (Linux) - Added automatic socket close on execv (Linux, macOS) - Fixed Google Drive login hanging after authentication (Linux) - Correctly generate and parse Windows epoch time (Windows, macOS) - Changes from 11.8 - Fixed unexpected file size error when copying to (S)FTP, and Google Drive OBS-URL: https://build.opensuse.org/request/show/894855 OBS-URL: https://build.opensuse.org/package/show/network/FreeFileSync?expand=0&rev=45
12 lines
545 B
Diff
12 lines
545 B
Diff
--- FreeFileSync_11.9_Source_orig/FreeFileSync/Source/base/icon_loader.cpp 2021-04-01 20:49:34.000000000 +0200
|
|
+++ FreeFileSync_11.9_Source/FreeFileSync/Source/base/icon_loader.cpp 2021-05-14 16:26:33.212337647 +0200
|
|
@@ -216,7 +216,7 @@
|
|
//the remaining icon types won't block!
|
|
assert(GDK_IS_PIXBUF(gicon) || G_IS_THEMED_ICON(gicon) || G_IS_EMBLEMED_ICON(gicon));
|
|
|
|
- return FileIconHolder(static_cast<GIcon*>(::g_object_ref(gicon)) /*pass ownership*/, maxSize);
|
|
+ return FileIconHolder(gicon /*pass ownership*/, maxSize);
|
|
|
|
}
|
|
|