mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 01:05:33 +00:00
Prevent InvalidCastException in Combobox.Entry
This commit is contained in:
parent
76cbe40848
commit
b070b77fe0
|
@ -52,7 +52,7 @@ namespace Gtk {
|
||||||
|
|
||||||
public Gtk.Entry Entry {
|
public Gtk.Entry Entry {
|
||||||
get {
|
get {
|
||||||
return (Gtk.Entry)Child;
|
return Child as Gtk.Entry;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue