mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-12 13:30:19 +00:00
If the end iter is also a part of the selection, then we are in the
Mon Sep 9 16:16:25 2002 Shivram U <shivaram.upadhyayula@wipro.com> * gtk/gtktextview.c (gtk_text_view_drag_motion): If the end iter is also a part of the selection, then we are in the selection. (#92768)
This commit is contained in:
parent
762c7d55d7
commit
9cce8c8c13
@ -1,3 +1,9 @@
|
|||||||
|
Mon Sep 9 16:16:25 2002 Shivram U <shivaram.upadhyayula@wipro.com>
|
||||||
|
|
||||||
|
* gtk/gtktextview.c (gtk_text_view_drag_motion): If the end iter
|
||||||
|
is also a part of the selection, then we are in the selection.
|
||||||
|
(#92768)
|
||||||
|
|
||||||
2002-09-08 Tor Lillqvist <tml@iki.fi>
|
2002-09-08 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* configure.in: Add AM_CONDITIONAL calls also in the non-x11
|
* configure.in: Add AM_CONDITIONAL calls also in the non-x11
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
Mon Sep 9 16:16:25 2002 Shivram U <shivaram.upadhyayula@wipro.com>
|
||||||
|
|
||||||
|
* gtk/gtktextview.c (gtk_text_view_drag_motion): If the end iter
|
||||||
|
is also a part of the selection, then we are in the selection.
|
||||||
|
(#92768)
|
||||||
|
|
||||||
2002-09-08 Tor Lillqvist <tml@iki.fi>
|
2002-09-08 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* configure.in: Add AM_CONDITIONAL calls also in the non-x11
|
* configure.in: Add AM_CONDITIONAL calls also in the non-x11
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
Mon Sep 9 16:16:25 2002 Shivram U <shivaram.upadhyayula@wipro.com>
|
||||||
|
|
||||||
|
* gtk/gtktextview.c (gtk_text_view_drag_motion): If the end iter
|
||||||
|
is also a part of the selection, then we are in the selection.
|
||||||
|
(#92768)
|
||||||
|
|
||||||
2002-09-08 Tor Lillqvist <tml@iki.fi>
|
2002-09-08 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* configure.in: Add AM_CONDITIONAL calls also in the non-x11
|
* configure.in: Add AM_CONDITIONAL calls also in the non-x11
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
Mon Sep 9 16:16:25 2002 Shivram U <shivaram.upadhyayula@wipro.com>
|
||||||
|
|
||||||
|
* gtk/gtktextview.c (gtk_text_view_drag_motion): If the end iter
|
||||||
|
is also a part of the selection, then we are in the selection.
|
||||||
|
(#92768)
|
||||||
|
|
||||||
2002-09-08 Tor Lillqvist <tml@iki.fi>
|
2002-09-08 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* configure.in: Add AM_CONDITIONAL calls also in the non-x11
|
* configure.in: Add AM_CONDITIONAL calls also in the non-x11
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
Mon Sep 9 16:16:25 2002 Shivram U <shivaram.upadhyayula@wipro.com>
|
||||||
|
|
||||||
|
* gtk/gtktextview.c (gtk_text_view_drag_motion): If the end iter
|
||||||
|
is also a part of the selection, then we are in the selection.
|
||||||
|
(#92768)
|
||||||
|
|
||||||
2002-09-08 Tor Lillqvist <tml@iki.fi>
|
2002-09-08 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* configure.in: Add AM_CONDITIONAL calls also in the non-x11
|
* configure.in: Add AM_CONDITIONAL calls also in the non-x11
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
Mon Sep 9 16:16:25 2002 Shivram U <shivaram.upadhyayula@wipro.com>
|
||||||
|
|
||||||
|
* gtk/gtktextview.c (gtk_text_view_drag_motion): If the end iter
|
||||||
|
is also a part of the selection, then we are in the selection.
|
||||||
|
(#92768)
|
||||||
|
|
||||||
2002-09-08 Tor Lillqvist <tml@iki.fi>
|
2002-09-08 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* configure.in: Add AM_CONDITIONAL calls also in the non-x11
|
* configure.in: Add AM_CONDITIONAL calls also in the non-x11
|
||||||
|
@ -5591,7 +5591,8 @@ gtk_text_view_drag_motion (GtkWidget *widget,
|
|||||||
}
|
}
|
||||||
else if (gtk_text_buffer_get_selection_bounds (get_buffer (text_view),
|
else if (gtk_text_buffer_get_selection_bounds (get_buffer (text_view),
|
||||||
&start, &end) &&
|
&start, &end) &&
|
||||||
gtk_text_iter_in_range (&newplace, &start, &end))
|
gtk_text_iter_compare (&newplace, &start) >= 0 &&
|
||||||
|
gtk_text_iter_compare (&newplace, &end) <= 0)
|
||||||
{
|
{
|
||||||
/* We're inside the selection. */
|
/* We're inside the selection. */
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user