Skip to content
Snippets Groups Projects
Commit abf3121b authored by Avinash Sonawane's avatar Avinash Sonawane Committed by Andre Miranda
Browse files

Remove unnecessary else branch

parent 8d399383
No related branches found
No related tags found
No related merge requests found
......@@ -264,10 +264,8 @@ int main (int argc, char **argv)
sd->region = ACTIVE_WINDOW;
else if (fullscreen)
sd->region = FULLSCREEN;
else if (region)
sd->region = SELECT;
else
sd->region_specified = FALSE;
sd->region = SELECT;
/* Whether to display the mouse pointer on the screenshot */
mouse ? (sd->show_mouse = 1) : (sd->show_mouse = 0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment