aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.ServerApplication/ServerNotifyIcon.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-03-21 12:10:02 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-03-21 12:10:02 -0400
commitc0aec48a31d96726a6fb1814f28b6971fabca163 (patch)
tree5ae0f4c295a722dfbc91e93d20b632d449adcf4e /MediaBrowser.ServerApplication/ServerNotifyIcon.cs
parente068e84ab6c2bdee49c41ceef50cbcedd8bcb355 (diff)
beta fixes
Diffstat (limited to 'MediaBrowser.ServerApplication/ServerNotifyIcon.cs')
-rw-r--r--MediaBrowser.ServerApplication/ServerNotifyIcon.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.ServerApplication/ServerNotifyIcon.cs b/MediaBrowser.ServerApplication/ServerNotifyIcon.cs
index e3e1359d9..f04593e90 100644
--- a/MediaBrowser.ServerApplication/ServerNotifyIcon.cs
+++ b/MediaBrowser.ServerApplication/ServerNotifyIcon.cs
@@ -75,7 +75,7 @@ namespace MediaBrowser.ServerApplication
//
notifyIcon1.ContextMenuStrip = contextMenuStrip1;
notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
- notifyIcon1.Text = "Media Browser";
+ notifyIcon1.Text = "Emby";
notifyIcon1.Visible = true;
//
// contextMenuStrip1
@@ -162,7 +162,7 @@ namespace MediaBrowser.ServerApplication
if (_appHost.IsFirstRun)
{
- Action action = () => notifyIcon1.ShowBalloonTip(5000, "Media Browser", "Welcome to Media Browser Server!", ToolTipIcon.Info);
+ Action action = () => notifyIcon1.ShowBalloonTip(5000, "Emby", "Welcome to Emby Server!", ToolTipIcon.Info);
contextMenuStrip1.Invoke(action);
}