misc
This commit is contained in:
@@ -961,11 +961,13 @@ namespace mpvnet
|
||||
}));
|
||||
}
|
||||
|
||||
void PropChangePause(bool enabled)
|
||||
void PropChangePause(bool paused)
|
||||
{
|
||||
Core.Paused = paused;
|
||||
|
||||
if (Taskbar != null && Core.TaskbarProgress)
|
||||
{
|
||||
if (enabled)
|
||||
if (paused)
|
||||
Taskbar.SetState(TaskbarStates.Paused);
|
||||
else
|
||||
Taskbar.SetState(TaskbarStates.Normal);
|
||||
|
||||
@@ -121,7 +121,7 @@ namespace mpvnet
|
||||
foreach (CommandItem item in CommandItem.Items)
|
||||
{
|
||||
string input = item.Input == "" ? "_" : item.Input;
|
||||
string line = " " + input.PadRight(10);
|
||||
string line = input.PadRight(10);
|
||||
|
||||
if (item.Command.Trim() == "")
|
||||
line += " ignore";
|
||||
|
||||
Reference in New Issue
Block a user