mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-10 05:06:36 +02:00
Comment out code for later update
This commit is contained in:
@@ -34,7 +34,7 @@ namespace Wox.CommandArgs
|
||||
}
|
||||
else
|
||||
{
|
||||
App.Window.ShowApp();
|
||||
App.API.ShowApp();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,9 +16,9 @@ namespace Wox.CommandArgs
|
||||
if (args.Count > 0)
|
||||
{
|
||||
string query = args[0];
|
||||
App.Window.ChangeQuery(query);
|
||||
App.API.ChangeQuery(query);
|
||||
}
|
||||
App.Window.ShowApp();
|
||||
App.API.ShowApp();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace Wox.CommandArgs
|
||||
|
||||
public void Execute(IList<string> args)
|
||||
{
|
||||
PluginManager.Init(App.Window);
|
||||
PluginManager.Init(App.API);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,7 +11,8 @@ namespace Wox.CommandArgs
|
||||
|
||||
public void Execute(IList<string> args)
|
||||
{
|
||||
App.Window.ToggleWox();
|
||||
//TODO: Add ToggleWox Method
|
||||
//App.API.ToggleWox();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user