[banshee] PodcastFeedPropertiesDialog: Fix display of feed URL



commit 8a364e5738a27f6f00031b667029c0373016d5ef
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]