mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Merge "Rename AbstractDrawingPreview.onDraw to drawPreview"
This commit is contained in:
commit
db906a7c9a
@ -39,7 +39,7 @@ public abstract class AbstractDrawingPreview {
|
||||
* Draws the preview
|
||||
* @param canvas The canvas where the preview is drawn.
|
||||
*/
|
||||
public abstract void onDraw(final Canvas canvas);
|
||||
public abstract void drawPreview(final Canvas canvas);
|
||||
|
||||
/**
|
||||
* Set the position of the preview.
|
||||
|
@ -130,7 +130,7 @@ public class GestureFloatingPreviewText extends AbstractDrawingPreview {
|
||||
* @param canvas The canvas where preview text is drawn.
|
||||
*/
|
||||
@Override
|
||||
public void onDraw(final Canvas canvas) {
|
||||
public void drawPreview(final Canvas canvas) {
|
||||
if (!isPreviewEnabled() || mSuggestedWords.isEmpty()
|
||||
|| TextUtils.isEmpty(mSuggestedWords.getWord(0))) {
|
||||
return;
|
||||
|
@ -220,7 +220,7 @@ public final class PreviewPlacerView extends RelativeLayout {
|
||||
// rectangle on the canvas.
|
||||
}
|
||||
}
|
||||
mGestureFloatingPreviewText.onDraw(canvas);
|
||||
mGestureFloatingPreviewText.drawPreview(canvas);
|
||||
if (mShowSlidingKeyInputPreview) {
|
||||
drawSlidingKeyInputPreview(canvas);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user