File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -81,8 +81,8 @@ case $1 in
8181 ;;
8282" debug" )
8383 initialize
84- # G_DEBUG=fatal-criticals gdb --args ./com.github.phase1geo.outliner " ${@: 2} "
85- G_DEBUG=fatal-warnings gdb --args ./com.github.phase1geo.outliner " ${@: 2} "
84+ G_DEBUG=fatal-criticals gdb --args ./com.github.phase1geo.outliner " ${@: 2} "
85+ # G_DEBUG=fatal-warnings gdb --args ./com.github.phase1geo.outliner " ${@: 2} "
8686 ;;
8787" test" )
8888 test
Original file line number Diff line number Diff line change @@ -734,7 +734,7 @@ public class OutlineTable : DrawingArea {
734734 _active = clicked;
735735 _active_to_select = true ;
736736 }
737- } else if ( _title. is_within( x, y ) ) {
737+ } else if ( (_title != null ) && _title. is_within( x, y ) ) {
738738 set_title_editable( true );
739739 switch ( n_press ) {
740740 case 1 : _title. set_cursor_at_char( x, y, _shift_set ); break ;
You can’t perform that action at this time.
0 commit comments