ext/exporter.c in rmov-0.1.1 vs ext/exporter.c in rmov-0.1.2

- old
+ new

@@ -89,14 +89,12 @@ ProcessSerialNumber current_process = {0, kCurrentProcess}; Movie movie = MOVIE(rb_iv_get(obj, "@movie")); ComponentInstance component = exporter_component(obj); // Bring this process to the front - if (!IsProcessVisible(&current_process)) { - err = TransformProcessType(&current_process, kProcessTransformToForegroundApplication); - if (err != noErr) { - rb_raise(eQuicktime, "Error %d occurred while brining this application to the forground.", err); - } + err = TransformProcessType(&current_process, kProcessTransformToForegroundApplication); + if (err != noErr) { + rb_raise(eQuicktime, "Error %d occurred while brining this application to the forground.", err); } SetFrontProcess(&current_process); // Show export dialog and save settings err = MovieExportDoUserDialog(component, movie, 0, 0, GetMovieDuration(movie), &canceled);