blob: 431572f5a83f34363b3015a65775d23359e197c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package com.itmill.toolkit.tests.tickets;
import com.itmill.toolkit.Application;
import com.itmill.toolkit.ui.Button;
import com.itmill.toolkit.ui.Window;
public class Ticket2101 extends Application {
public void init() {
Window w = new Window(getClass().getSimpleName());
setMainWindow(w);
Button b = new Button(
"Button with a long text which will not fit on 50 pixels");
b.setWidth("50px");
w.getLayout().addComponent(b);
}
}
|