Skip to content

Commit

Permalink
Full redraw after help screen
Browse files Browse the repository at this point in the history
  • Loading branch information
HebaruSan committed Nov 10, 2017
1 parent 1c77f07 commit 5ab8b83
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ConsoleUI/ModInfoScreen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public ModInfoScreen(KSPManager mgr, ChangePlan cp, CkanModule m)
));
AddObject(new ConsoleLabel(
3, 5, 12,
() => $"Download:",
() => "Download:",
() => ConsoleTheme.Current.DimLabelFg
));
AddObject(new ConsoleLabel(
Expand Down
6 changes: 3 additions & 3 deletions ConsoleUI/ModListScreen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,7 @@ public ModListScreen(KSPManager mgr)
return true;
});

moduleList.AddTip("Alt+A", "Apply changes", plan.NonEmpty
);
moduleList.AddTip("Alt+A", "Apply changes", plan.NonEmpty);
moduleList.AddBinding(Keys.AltA, (object sender) => {
ApplyChanges();
return true;
Expand All @@ -217,7 +216,7 @@ public ModListScreen(KSPManager mgr)
() => {
int days = daysSinceUpdated(registryFilePath());
return days < 1 ? ""
: days == 1 ? $"Updated at least {days} day ago"
: days == 1 ? $"Updated at least {days} day ago"
: $"Updated at least {days} days ago";
},
() => {
Expand Down Expand Up @@ -437,6 +436,7 @@ private bool Help()
{
ModListHelpDialog hd = new ModListHelpDialog();
hd.Run();
DrawBackground();
return true;
}

Expand Down

0 comments on commit 5ab8b83

Please sign in to comment.