Make detached sequence window double-buffered too.
This commit is contained in:
parent
0953207188
commit
81fe5efb53
3
Makefile
3
Makefile
|
@ -61,6 +61,9 @@ clean:
|
||||||
rm -f non makedepend $(OBJS)
|
rm -f non makedepend $(OBJS)
|
||||||
@ echo Done
|
@ echo Done
|
||||||
|
|
||||||
|
valgrind:
|
||||||
|
valgrind ./non
|
||||||
|
|
||||||
.C.o:
|
.C.o:
|
||||||
@ echo -n "Compiling: "; tput bold; tput setaf 3; echo $<; tput sgr0; true
|
@ echo -n "Compiling: "; tput bold; tput setaf 3; echo $<; tput sgr0; true
|
||||||
@ $(CXX) $(CXXFLAGS) -c $< -o $@
|
@ $(CXX) $(CXXFLAGS) -c $< -o $@
|
||||||
|
|
16
gui/ui.fl
16
gui/ui.fl
|
@ -960,16 +960,17 @@ else
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Function {make_seq_window()} {} {
|
Function {make_seq_window()} {open
|
||||||
|
} {
|
||||||
Fl_Window seq_window {
|
Fl_Window seq_window {
|
||||||
|
label {Non Sequencer - Sequence}
|
||||||
callback {sequence_tab->activate();
|
callback {sequence_tab->activate();
|
||||||
o->hide();
|
o->hide();
|
||||||
|
detach_button->value( 0 );} open
|
||||||
detach_button->value( 0 );}
|
xywh {681 189 876 675} type Double resizable visible
|
||||||
xywh {189 27 1278 1003} type Single hide resizable
|
|
||||||
} {
|
} {
|
||||||
Fl_Group seq_detached_group {open
|
Fl_Group seq_detached_group {open selected
|
||||||
xywh {0 0 1277 1003} resizable
|
xywh {0 0 876 675} resizable
|
||||||
} {}
|
} {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1145,8 +1146,7 @@ free( s );
|
||||||
|
|
||||||
|
|
||||||
if ( playback_mode_menu )
|
if ( playback_mode_menu )
|
||||||
playback_mode_menu->value( song.play_mode );} {selected
|
playback_mode_menu->value( song.play_mode );} {}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
Function {update_mapping_menu()} {open
|
Function {update_mapping_menu()} {open
|
||||||
} {
|
} {
|
||||||
|
|
Loading…
Reference in New Issue