View Issue Details

IDProjectCategoryView StatusLast Update
0001986ardourbugspublic2008-11-21 00:04
Reportercolinf Assigned Topaul  
PrioritynormalSeveritytrivialReproducibilityalways
Status closedResolutionfixed 
Product VersionSVN/2.0-ongoing 
Summary0001986: Answering 'No' to "This session already exists. Do you want to open it?" leaves "Starting audio engine" visible
DescriptionIf you type the name of an existing session into the New Session dialog, click 'Open', and then answer 'No' to "This session already exists. Do you want to open it?", "Starting audio engine" remains visible and on top of the New Session dialog. Moreover, it can't be closed: you have to drag it to one side.

To me, this looks a bit ugly.

I've attached a one-liner patch that fixes this for me by hiding "Starting audio engine" with loading_dialog->hide() if you answer 'No': is that a good idea?
TagsNo tags attached.

Activities

2007-12-10 15:02

 

hide-loading-dialog.patch (363 bytes)   
Index: gtk2_ardour/ardour_ui.cc
===================================================================
--- gtk2_ardour/ardour_ui.cc	(revision 2753)
+++ gtk2_ardour/ardour_ui.cc	(working copy)
@@ -2203,6 +2203,7 @@
 					default:
 						response = RESPONSE_NONE;
 						new_session_dialog->reset ();
+						loading_dialog->hide ();
 						continue;
 					}
 				} 
 
hide-loading-dialog.patch (363 bytes)   

paul

2007-12-11 15:59

administrator   ~0004602

fixed. thanks.

Issue History

Date Modified Username Field Change
2007-12-10 15:02 colinf New Issue
2007-12-10 15:02 colinf File Added: hide-loading-dialog.patch
2007-12-11 15:59 paul Status new => resolved
2007-12-11 15:59 paul Resolution open => fixed
2007-12-11 15:59 paul Assigned To => paul
2007-12-11 15:59 paul Note Added: 0004602
2008-11-21 00:04 seablade Status resolved => closed