Skip to content

Commit

Permalink
Fix being unable to lower readable-colors flag in CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
ScrubN committed Jul 11, 2024
1 parent 01d2fc9 commit be4306d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion TwitchDownloaderCLI/Modes/Arguments/ChatRenderArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ internal sealed class ChatRenderArgs : IFileCollisionArgs, ITwitchDownloaderArgs
public bool AlternateMessageBackgrounds { get; set; }

[Option("readable-colors", Default = true, HelpText = "Increases the contrast of usernames against the background or outline color.")]
public bool AdjustUsernameVisibility { get; set; }
public bool? AdjustUsernameVisibility { get; set; }

[Option("offline", Default = false, HelpText = "Render completely offline using only embedded emotes, badges, and bits from the input json.")]
public bool Offline { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion TwitchDownloaderCLI/Modes/RenderChat.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ private static ChatRenderOptions GetRenderOptions(ChatRenderArgs inputOptions, F
AccentStrokeScale = inputOptions.ScaleAccentStroke,
DisperseCommentOffsets = inputOptions.DisperseCommentOffsets,
AlternateMessageBackgrounds = inputOptions.AlternateMessageBackgrounds,
AdjustUsernameVisibility = inputOptions.AdjustUsernameVisibility,
AdjustUsernameVisibility = (bool)inputOptions.AdjustUsernameVisibility!,
FileCollisionCallback = collisionHandler.HandleCollisionCallback,
};

Expand Down

0 comments on commit be4306d

Please sign in to comment.