Fixed wrong state in GTK Entry using Placeholder and Text (#2915) fixes #2810

This commit is contained in:
Javier Suárez Ruiz 2018-06-04 23:33:52 +02:00 коммит произвёл Rui Marinho
Родитель f0438fe496
Коммит 99a11c3e90
2 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -99,7 +99,6 @@ namespace Xamarin.Forms.Platform.GTK.Controls
{
if (string.IsNullOrEmpty(_entry.Text) && !string.IsNullOrEmpty(_placeholder.Text))
{
Entry.Sensitive = false;
_placeholderContainer.GdkWindow?.Raise();
}
else

Просмотреть файл

@ -126,7 +126,7 @@ namespace Xamarin.Forms.Platform.GTK
}
}
private async void OnWindowStateEvent (object o, WindowStateEventArgs args)
private void OnWindowStateEvent (object o, WindowStateEventArgs args)
{
if (args.Event.ChangedMask == Gdk.WindowState.Iconified) {
var windowState = args.Event.NewWindowState;