f-spot r3772 - in trunk: . src



Author: sdelcroix
Date: Fri Mar 21 08:51:16 2008
New Revision: 3772
URL: http://svn.gnome.org/viewvc/f-spot?rev=3772&view=rev

Log:
2008-03-21  Stephane Delcroix  <sdelcroix novell com>

	* src/MainWindow.cs: disable tag assign bar if no selection, Fixes
	bgo #504242. Thx Maxxer.


Modified:
   trunk/ChangeLog
   trunk/src/MainWindow.cs

Modified: trunk/src/MainWindow.cs
==============================================================================
--- trunk/src/MainWindow.cs	(original)
+++ trunk/src/MainWindow.cs	Fri Mar 21 08:51:16 2008
@@ -2988,7 +2988,7 @@
 
 	public void HandlePossibleTagTyping (object sender, Gtk.KeyPressEventArgs args)
 	{
-		if (tagbar.Visible && tag_entry.HasFocus)
+		if (Selection.Count == 0 || tagbar.Visible && tag_entry.HasFocus)
 			return;
 
 #if !ALLOW_TAG_TYPING_WITHOUT_HOTKEY



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]