From 1ae3bffa1abd4328c7df2f536250dc967fa97c91 Mon Sep 17 00:00:00 2001 From: Vasil Chimev Date: Thu, 25 Jun 2015 17:45:10 +0300 Subject: [PATCH] Update layouts test pages. --- 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 c0005aa35..95e2b683a 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 !== 66) { - view.minWidth = 66; + if (view.minWidth !== 95) { + view.minWidth = 95; 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 !== 66) { - child.minWidth = 66; + if (child.minWidth !== 95) { + child.minWidth = 95; child.minHeight = 55; } else { child.minWidth = 0;