Added options for anti-alias & alpha layer coloring to config.def.h

Also removed now obsolete -p command line option; fixes issue #98
This commit is contained in:
Bert Münnich
2013-08-22 12:59:05 +02:00
parent fb6e4bdd98
commit 26a624a543
8 changed files with 23 additions and 15 deletions

View File

@@ -33,7 +33,7 @@ const options_t *options = (const options_t*) &_options;
void print_usage(void)
{
printf("usage: sxiv [-bcdFfhiopqrstvZ] [-g GEOMETRY] [-n NUM] "
printf("usage: sxiv [-bcdFfhioqrstvZ] [-g GEOMETRY] [-n NUM] "
"[-N name] [-z ZOOM] FILES...\n");
}
@@ -53,7 +53,6 @@ void parse_options(int argc, char **argv)
_options.scalemode = SCALE_MODE;
_options.zoom = 1.0;
_options.aa = true;
_options.fixed_win = false;
_options.fullscreen = false;
@@ -65,7 +64,7 @@ void parse_options(int argc, char **argv)
_options.thumb_mode = false;
_options.clean_cache = false;
while ((opt = getopt(argc, argv, "bcdFfg:hin:N:opqrstvZz:")) != -1) {
while ((opt = getopt(argc, argv, "bcdFfg:hin:N:oqrstvZz:")) != -1) {
switch (opt) {
case '?':
print_usage();
@@ -109,9 +108,6 @@ void parse_options(int argc, char **argv)
case 'o':
_options.to_stdout = true;
break;
case 'p':
_options.aa = false;
break;
case 'q':
_options.quiet = true;
break;