mirror of https://github.com/buggins/dlangide.git
fixes
This commit is contained in:
parent
1b33ca7ea7
commit
1d368521ee
|
|
@ -824,11 +824,7 @@ Widget createAboutWidget()
|
||||||
{
|
{
|
||||||
LinearLayout res = new VerticalLayout();
|
LinearLayout res = new VerticalLayout();
|
||||||
res.padding(Rect(10,10,10,10));
|
res.padding(Rect(10,10,10,10));
|
||||||
res.addChild(new TextWidget(null, "DLangIDE"d));
|
res.addChild(new MultilineTextWidget(null, "DLangIDE\n(C) Vadim Lopatin, 2014\nhttp://github.com/buggins/dlangide\nIDE for D programming language written in D\nUses DlangUI library for GUI"d));
|
||||||
res.addChild(new TextWidget(null, "(C) Vadim Lopatin, 2014"d));
|
|
||||||
res.addChild(new TextWidget(null, "http://github.com/buggins/dlangide"d));
|
|
||||||
res.addChild(new TextWidget(null, "IDE for D programming language written in D"d));
|
|
||||||
res.addChild(new TextWidget(null, "Uses DlangUI library for GUI"d));
|
|
||||||
Button closeButton = new Button("close", "Close"d);
|
Button closeButton = new Button("close", "Close"d);
|
||||||
closeButton.onClickListener = delegate(Widget src) {
|
closeButton.onClickListener = delegate(Widget src) {
|
||||||
Log.i("Closing window");
|
Log.i("Closing window");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue