[brasero/gnome-2-30] Fix #613986 - Pressing create audio cd does nothing



commit 70402c22ff09a5820872fe1d701c61b805b85966
Author: Philippe Rouquier <bonfire-app wanadoo fr>
Date:   Fri May 21 22:17:36 2010 +0200

    Fix #613986  - Pressing create audio cd does nothing

 src/main.c |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/src/main.c b/src/main.c
index a5bc856..0c4a7b4 100644
--- a/src/main.c
+++ b/src/main.c
@@ -344,7 +344,8 @@ brasero_app_parse_options (BraseroApp *app)
 					  FALSE,
 					  TRUE,
 					  burn_immediately != 0);
-		return;
+		if (burn_immediately)
+			return;
 	}
 	else if (burn_project_uri) {
 		brasero_app_open_project (app,
@@ -373,7 +374,8 @@ brasero_app_parse_options (BraseroApp *app)
 					  TRUE,
 					  TRUE,
 					  burn_immediately != 0);
-		return;
+		if (burn_immediately)
+			return;
 	}
 
 #endif



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]