From e3cafa2a1d42f74aa5828aa7d71f99bebf26c327 Mon Sep 17 00:00:00 2001 From: Vasil Chimev Date: Thu, 25 Jun 2015 18:07:50 +0300 Subject: [PATCH] Update layouts test page. --- apps/ui-tests-app/layouts/myview.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/ui-tests-app/layouts/myview.ts b/apps/ui-tests-app/layouts/myview.ts index 95e2b683a..9e434a7d9 100644 --- a/apps/ui-tests-app/layouts/myview.ts +++ b/apps/ui-tests-app/layouts/myview.ts @@ -19,8 +19,8 @@ export class ViewModel extends observable.Observable { public onMinWidthMinHeight(args: { eventName: string, object: any }): void { var view: view.View = args.object; - if (view.minWidth !== 95) { - view.minWidth = 95; + if (view.minWidth !== 105) { + view.minWidth = 105; view.minHeight = 55; } else { view.minWidth = 0; @@ -105,8 +105,8 @@ export class ViewModel extends observable.Observable { // MinWidthMinHeight child = layout.getViewById("minWidthMinHeight"); - if (child.minWidth !== 95) { - child.minWidth = 95; + if (child.minWidth !== 105) { + child.minWidth = 105; child.minHeight = 55; } else { child.minWidth = 0;