Skip to content

Commit f0cf3ea

Browse files
committed
Fixing small error in item selector.
1 parent 1753af1 commit f0cf3ea

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

src/OutlineTable.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)