From 9ee9354568bab26d21f0ffaf74db0a8f772ecd77 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Mon, 31 May 2021 23:02:38 +0200 Subject: [PATCH] [API change getFocus() in isFocused() --- src/org/atriasoft/ewol/widget/Widget.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/atriasoft/ewol/widget/Widget.java b/src/org/atriasoft/ewol/widget/Widget.java index 22734f9..93764c9 100644 --- a/src/org/atriasoft/ewol/widget/Widget.java +++ b/src/org/atriasoft/ewol/widget/Widget.java @@ -256,7 +256,7 @@ public class Widget extends EwolObject { * get the focus state of the widget * @return focus state */ - public boolean getFocus() { + public boolean isFocused() { return this.hasFocus; }