[banshee/stable-2.0] PodcastFeedPropertiesDialog: Fix display of feed URL



commit da9df3b54c1925b7f554f8e523e0fb8e4d5d95d2
Author: Bertrand Lorentz <bertrand lorentz gmail com>
Date:   Sun May 1 17:48:59 2011 +0200

    PodcastFeedPropertiesDialog: Fix display of feed URL
    
    Underscore character was not displayed in the label for the feed URL,
    because it was considered as a mnemonic.

 .../Dialog/PodcastFeedPropertiesDialog.cs          |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/src/Extensions/Banshee.Podcasting/Banshee.Podcasting.Gui/PodcastManager/Dialog/PodcastFeedPropertiesDialog.cs b/src/Extensions/Banshee.Podcasting/Banshee.Podcasting.Gui/PodcastManager/Dialog/PodcastFeedPropertiesDialog.cs
index a1e4618..f16345d 100644
--- a/src/Extensions/Banshee.Podcasting/Banshee.Podcasting.Gui/PodcastManager/Dialog/PodcastFeedPropertiesDialog.cs
+++ b/src/Extensions/Banshee.Podcasting/Banshee.Podcasting.Gui/PodcastManager/Dialog/PodcastFeedPropertiesDialog.cs
@@ -123,7 +123,8 @@ namespace Banshee.Podcasting.Gui
                 Xalign = 0f
             };
 
-            var feed_url_text = new Label (feed.Url.ToString ()) {
+            var feed_url_text = new Label () {
+                Text = feed.Url.ToString (),
                 Wrap = false,
                 Selectable = true,
                 Xalign = 0f,



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