Skip to content

Display Text Wrap not works #129

Description

@pptsk

Hi,
I want to disable text wrap function but M5.display.setTextWrap( false ) does not works and large text is wrapped over display.
What I am doing wrong?
Thank You
Here is example

#include <M5StickC.h>

void setup() {
  M5.begin();
  M5.Lcd.setRotation(3);
  M5.Lcd.setTextWrap(false);
  M5.Lcd.fillScreen(BLACK);
  M5.Lcd.setCursor(0, 0);
  M5.Lcd.setTextColor(WHITE);
  M5.Lcd.setTextSize( 2 );
  M5.Lcd.print("Display test, text wrap not works...");
}

void loop(){
}

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions