Browse Source

Cleanup.

tags/non-daw-v1.1.0
Jonathan Moore Liles 17 years ago
parent
commit
8677b76201
2 changed files with 5 additions and 5 deletions
  1. +4
    -4
      FL/Fl_Text_Edit_Window.fl
  2. +1
    -1
      Timeline/Annotation_Point.H

+ 4
- 4
FL/Fl_Text_Edit_Window.fl View File

@@ -4,8 +4,8 @@ header_name {.H}
code_name {.C}
decl {\#include <string.h>} {}

widget_class Fl_Text_Edit_Window {open
xywh {787 474 355 410} type Double resizable
widget_class Fl_Text_Edit_Window {open selected
xywh {375 272 355 410} type Double resizable
code0 {this->size_range( 0, 0, 400, 400 );}
class Fl_Window modal visible
} {
@@ -33,9 +33,9 @@ widget_class Fl_Text_Edit_Window {open
}
}

Function {fl_text_edit( const char *title, const char *button_text, const char *initial_text )} {open selected C return_type {char *}
Function {fl_text_edit( const char *title, const char *button_text, const char *initial_text )} {open C return_type {char *}
} {
code {Fl_Text_Edit_Window tew( 0, 0, 355, 410, title );
code {Fl_Text_Edit_Window tew( 355, 410, title );

tew.return_button->label( button_text );
tew.title_box->label( title );


+ 1
- 1
Timeline/Annotation_Point.H View File

@@ -110,7 +110,7 @@ public:
{
Logger _log( this );

if ( m == FL_PUSH && Fl::test_shortcur( FL_BUTTON3 ) && ! Fl::event_shift() )
if ( m == FL_PUSH && Fl::test_shortcut( FL_BUTTON3 ) && ! Fl::event_shift() )
{
const char *s = fl_input( "New name for mark:", name() );



Loading…
Cancel
Save