mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-22 20:35:37 +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 {
|
||||
get {
|
||||
return (Gtk.Entry)Child;
|
||||
return Child as Gtk.Entry;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue