add new command line argument for hiding seekbar

This commit is contained in:
R2DLiu 2020-12-02 00:26:06 -05:00
commit 8ae8a60cd1
5 changed files with 15 additions and 1 deletions

View file

@ -123,6 +123,9 @@ std::unique_ptr<optparse::OptionParser> CreateParser(ParserOptions options)
.metavar("<file>")
.type("string")
.help("Path to Slippi replay config file (default: Slippi/playback.txt)");
parser->add_option("-hs", "--hide-seekbar")
.action("store_true")
.help("Disable and hide seekbar during playback");
return parser;
}