id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1251	Edit Session Description on Save Session, needs to be applied to trunk	bowtie	bowtie	"A one liner fix to enable session description to be edited on save,

rather than at present where it's a one hit on creation.

{{{#!diff
Index: lib/Padre/Wx/Dialog/SessionSave.pm
===================================================================
--- lib/Padre/Wx/Dialog/SessionSave.pm	(revision 14931)
+++ lib/Padre/Wx/Dialog/SessionSave.pm	(working copy)
@@ -94,6 +94,9 @@
 
 	# capture session and save it
 	my @session = $main->capture_session;
+
+	# Save Session description:
+	Padre::DB->do( 'UPDATE Session SET description=? WHERE id=?', {}, $self->_text->GetValue, $session->id );
 	$main->save_session( $session, @session );
 
 	# close dialog
}}}

a P-P-Cookbook by product :)"	enhancement	closed	major		Session Management	0.86	fixed	Session Save	Alias
