Mixer: Add Help/Manual option to menubar.

pull/3/head
Jonathan Moore Liles 2010-01-24 16:35:36 -06:00
parent 8087901269
commit 95708a2371
1 changed files with 10 additions and 0 deletions

View File

@ -195,6 +195,16 @@ void Mixer::cb_menu(Fl_Widget* o) {
ab.run();
}
else if ( !strcmp( picked, "&Help/&Manual" ))
{
char *pat;
asprintf( &pat, "file://%s%s.html", DOCUMENT_PATH, "MANUAL.html" );
open_url( pat );
free( pat );
}
}
void Mixer::cb_menu(Fl_Widget* o, void* v) {