mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-12-02 21:47:18 +01:00
UI: Set UseFloatingWatermark to false when the watermark is empty (#135)
This commit is contained in:
parent
d7e17abade
commit
fb4ab5ea08
@ -34,6 +34,11 @@ namespace Ryujinx.Ava.UI.Controls
|
|||||||
|
|
||||||
Input.Watermark = _placeholder;
|
Input.Watermark = _placeholder;
|
||||||
|
|
||||||
|
if (string.IsNullOrWhiteSpace(Input.Watermark))
|
||||||
|
{
|
||||||
|
Input.UseFloatingWatermark = false;
|
||||||
|
}
|
||||||
|
|
||||||
Input.AddHandler(TextInputEvent, Message_TextInput, RoutingStrategies.Tunnel, true);
|
Input.AddHandler(TextInputEvent, Message_TextInput, RoutingStrategies.Tunnel, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user