Skip to content

Commit

Permalink
[UI] slightly more robust
Browse files Browse the repository at this point in the history
  • Loading branch information
mean committed Oct 13, 2016
1 parent 9b3490e commit a2f64aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion avidemux/common/gui_main.cpp
Expand Up @@ -830,7 +830,7 @@ int A_appendVideo (const char *name)
ADM_info("Start is %s, marker A is %s\n",ADM_us2plain(pts),ADM_us2plain(markerA));
ADM_info("End is %s, marker B is %s\n",ADM_us2plain(theEnd),ADM_us2plain(markerB));

if(theEnd!=markerB && markerA!=pts)
if(theEnd!=markerB && (markerA!=pts && !markerA))
{
markerChanged=true;
}
Expand Down

0 comments on commit a2f64aa

Please sign in to comment.