Ticket #1251 (closed enhancement: fixed)
Edit Session Description on Save Session, needs to be applied to trunk
| Reported by: | bowtie | Owned by: | bowtie |
|---|---|---|---|
| Priority: | major | Milestone: | |
| Component: | Session Management | Version: | 0.86 |
| Keywords: | Session Save | Cc: | Alias |
Description
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.
-
lib/Padre/Wx/Dialog/SessionSave.pm
94 94 95 95 # capture session and save it 96 96 my @session = $main->capture_session; 97 98 # Save Session description: 99 Padre::DB->do( 'UPDATE Session SET description=? WHERE id=?', {}, $self->_text->GetValue, $session->id ); 97 100 $main->save_session( $session, @session ); 98 101 99 102 # close dialog
a P-P-Cookbook by product :)
Change History
Note: See
TracTickets for help on using
tickets.

Based on the patch fixed in r14940
thank you for the patch!