blob: bd6cdb78ad04a30aaceaca9913a7e02d3e88b3ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
http://bugs.gentoo.org/show_bug.cgi?id=248633
http://bugzilla.gnome.org/show_bug.cgi?id=556395
Index: src/Widgets/Filmstrip.cs
===================================================================
--- src/Widgets/Filmstrip.cs (revisione 4485)
+++ src/Widgets/Filmstrip.cs (copia locale)
@@ -372,6 +372,9 @@
if (evnt.Window != GdkWindow)
return true;
+ if (selection.Collection.Count == 0)
+ return true;
+
if (extendable && Allocation.Width >= BackgroundPixbuf.Width + (2 * x_offset) + BackgroundTile.Width)
BackgroundPixbuf = null;
|