You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "expose" and "set_scroll_adjustments" signals are deprecated in GTK-3.0 but are still present in lablgtk3
One such place is GText.view class. Another, but related problem is the text view does not have the GtkScrollable interface methods, while the GtkTextView implements the above interface.
My guess is that those methods should be added to GText.view
method hadjustment : GData.adjustment
method vadjustment : GData.adjustment
method set_hadjustment : GData.adjustment -> unit
method set_vadjustment : GData.adjustment -> unit
A proof of concept patch is here with the usual disclaimer: "Works on my machine"
The text was updated successfully, but these errors were encountered:
The
"expose"
and"set_scroll_adjustments"
signals are deprecated in GTK-3.0 but are still present inlablgtk3
One such place is
GText.view
class. Another, but related problem is the text view does not have theGtkScrollable
interface methods, while theGtkTextView
implements the above interface.My guess is that those methods should be added to
GText.view
A proof of concept patch is here with the usual disclaimer: "Works on my machine"
The text was updated successfully, but these errors were encountered: