summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBertrand Lorentz <bertrand.lorentz@gmail.com>2011-05-01 17:48:59 +0200
committerBertrand Lorentz <bertrand.lorentz@gmail.com>2011-05-01 17:48:59 +0200
commit8a364e5738a27f6f00031b667029c0373016d5ef (patch)
tree8a8f4d8862a4538aa4ed6e0909f4e993870ea149
parent3ad54a56f80823615fb0e0662d43b646c4fef197 (diff)
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.
-rw-r--r--src/Extensions/Banshee.Podcasting/Banshee.Podcasting.Gui/PodcastManager/Dialog/PodcastFeedPropertiesDialog.cs3
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 a1e46183f..f16345df0 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,