Procházet zdrojové kódy

HelloWorld: Make the demo label say "Hello\nWorld!".

This is really just to show off multi-line GLabels :^)
Andreas Kling před 6 roky
rodič
revize
33466aba65
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      Demos/HelloWorld/main.cpp

+ 1 - 1
Demos/HelloWorld/main.cpp

@@ -21,7 +21,7 @@ int main(int argc, char** argv)
     main_widget->layout()->set_margins({ 4, 4, 4, 4 });
 
     auto* label = new GLabel(main_widget);
-    label->set_text("Hello World!");
+    label->set_text("Hello\nWorld!");
 
     auto* button = new GButton(main_widget);
     button->set_text("Good-bye");