diff options
author | sr55 <[email protected]> | 2008-08-16 19:42:44 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2008-08-16 19:42:44 +0000 |
commit | fa9459cd2bd333541564d08a3bfc7d0edf44443b (patch) | |
tree | dabba69dfbc834befb4ce662e40a9805ec5a51d3 /win/C#/frmMain.cs | |
parent | 0d63c1bef741e359f8d10664266ad4c6b411cd6c (diff) |
WinGui:
- One elusive cross-thread bug in the Activity window fix (hopefully) + some tweaks to the log display
- Nicer Exception Handling Message box errors for frmReadDVD.
- frmMain Minimize to taskbar no tooltip text exception fixed.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1634 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r-- | win/C#/frmMain.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs index 4c533ea43..16d9c54e4 100644 --- a/win/C#/frmMain.cs +++ b/win/C#/frmMain.cs @@ -1879,7 +1879,10 @@ namespace Handbrake if (FormWindowState.Minimized == this.WindowState)
{
notifyIcon.Visible = true;
- notifyIcon.BalloonTipText = lbl_encode.Text;
+ if (lbl_encode.Text != "")
+ notifyIcon.BalloonTipText = lbl_encode.Text;
+ else
+ notifyIcon.BalloonTipText = "Not Encoding";
notifyIcon.ShowBalloonTip(500);
this.Hide();
}
|