From 6941069d497389c9881a3597fe806242b4cc3442 Mon Sep 17 00:00:00 2001
From: Toshio Sekiya
If the list has many items and it needs to be scrolled, a warning -message can be issued.
+If your program has the following two, a warning message can be +issued.
+GtkText - unexpected blinking selection. Removing
-I don’t have an idea why this happens. But if GtkText “focusable” -property is FALSE, the warning doesn’t happen. So it probably come from -focus and scroll. If you know the reason, please let me know.
-It is a warning message, not a fatal error. I think we can ignore -it.
+I don’t have an exact idea why this happens. But if GtkText +“focusable” property is FALSE, the warning doesn’t happen. So it +probably comes from focus and scroll.
+You can avoid this by unsetting any focus widget under the main +window. When scroll begins, the “value-changed” signal on the vertical +adjustment of the scrolled window is emitted.
+The following is extracted from the ui file and C source file.
+
+ ... ... ...object class="GtkScrolledWindow">
+ <property name="hexpand">TRUE</property>
+ <property name="vexpand">TRUE</property>
+ <property name="vadjustment">
+ <object class="GtkAdjustment">
+ <signal name="value-changed" handler="adjustment_value_changed_cb" swapped="no" object="LeWindow"/>
+ <object>
+ </property>
+ </ ... ... ...