Browse Source

Mixer: Add Help/Manual option to menubar.

tags/non-daw-v1.1.0
Jonathan Moore Liles 15 years ago
parent
commit
95708a2371
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      Mixer/Mixer.C

+ 10
- 0
Mixer/Mixer.C View File

@@ -195,6 +195,16 @@ void Mixer::cb_menu(Fl_Widget* o) {


ab.run(); 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) { void Mixer::cb_menu(Fl_Widget* o, void* v) {


Loading…
Cancel
Save