We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99bb7a3 commit dbd41fbCopy full SHA for dbd41fb
R7.Webmate.Xwt/MainWindow.cs
@@ -19,7 +19,7 @@ public MainWindow ()
19
{
20
Icon = IconHelper.GetAppIcon ();
21
22
- if (!Program.CmdlineArgs.NoTrayIcon) {
+ if (Program.CmdlineArgs.TrayIcon) {
23
InitStatusIcon ();
24
}
25
R7.Webmate.Xwt/Program.cs
@@ -9,16 +9,16 @@ public class CmdlineArgs
9
10
public bool Silent { get; protected set; }
11
12
- public bool NoTrayIcon { get; protected set; }
+ public bool TrayIcon { get; protected set; }
13
14
public CmdlineArgs (string [] args)
15
16
foreach (var arg in args) {
17
if (arg == "--silent") {
18
Silent = true;
- if (arg == "--no-tray-icon") {
- NoTrayIcon = true;
+ if (arg == "--tray-icon") {
+ TrayIcon = true;
0 commit comments