tomboy r1884 - in trunk: . Tomboy



Author: btimothy
Date: Fri Feb 22 22:59:54 2008
New Revision: 1884
URL: http://svn.gnome.org/viewvc/tomboy?rev=1884&view=rev

Log:
* Tomboy/Utils.cs: Set Label.Underline = false in the HIGMessageDialog
  on both the title and message of the dialog so that underline
  characters are not interpreted as mnemonics.  Fixes bug #496986.

Modified:
   trunk/ChangeLog
   trunk/Tomboy/Utils.cs

Modified: trunk/Tomboy/Utils.cs
==============================================================================
--- trunk/Tomboy/Utils.cs	(original)
+++ trunk/Tomboy/Utils.cs	Fri Feb 22 22:59:54 2008
@@ -302,6 +302,7 @@
 
 			label = new Gtk.Label (title);
 			label.UseMarkup = true;
+			label.UseUnderline = false;
 			label.Justify = Gtk.Justification.Left;
 			label.LineWrap = true;
 			label.SetAlignment (0.0f, 0.5f);
@@ -310,6 +311,7 @@
 
 			label = new Gtk.Label (msg);
 			label.UseMarkup = true;
+			label.UseUnderline = false;
 			label.Justify = Gtk.Justification.Left;
 			label.LineWrap = true;
 			label.SetAlignment (0.0f, 0.5f);



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