diff options
author | Boris Faure <billiob@gmail.com> | 2015-02-06 21:36:15 +0100 |
---|---|---|
committer | Boris Faure <billiob@gmail.com> | 2015-02-06 22:10:10 +0100 |
commit | 5a9dcf1ed3d0f5c81d1f0d164e1cd2865ea4ab2a (patch) | |
tree | 673b40efe6c3f78a0f7a74982bbe19393b50d0a5 | |
parent | 788f3e7eb7bc7262ab196e8362a4e90ca8af3cc7 (diff) |
do not apply extend fix when selection is box
-rw-r--r-- | src/bin/termio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/termio.c b/src/bin/termio.c index df56a3a..21d2f22 100644 --- a/src/bin/termio.c +++ b/src/bin/termio.c | |||
@@ -3152,7 +3152,7 @@ _selection_newline_extend_fix(Evas_Object *obj) | |||
3152 | 3152 | ||
3153 | sd = evas_object_smart_data_get(obj); | 3153 | sd = evas_object_smart_data_get(obj); |
3154 | 3154 | ||
3155 | if ((sd->top_left) || (sd->bottom_right)) | 3155 | if ((sd->top_left) || (sd->bottom_right) || (sd->pty->selection.is_box)) |
3156 | return; | 3156 | return; |
3157 | 3157 | ||
3158 | termpty_cellcomp_freeze(sd->pty); | 3158 | termpty_cellcomp_freeze(sd->pty); |