[SRADA-940] Expand the width of export button and resize font
authorjaeyong lee <jae-yong.lee@samsung.com>
Fri, 5 Aug 2016 05:49:50 +0000 (14:49 +0900)
committergihun chang <gihun.chang@samsung.com>
Tue, 9 Aug 2016 00:57:53 +0000 (09:57 +0900)
Change-Id: If94dbbf1adb9a8fba57449a2b1f150879dcd696f

org.tizen.dynamicanalyzer.appearance/src/org/tizen/dynamicanalyzer/widgets/da/base/DADialog.java

index 961a902..452ca2a 100644 (file)
@@ -240,11 +240,12 @@ public class DADialog {
        private void addExportButton(Composite buttonComp) {
                exportButton = new Button(buttonComp, SWT.NONE);
                exportButton.setText(WidgetLabels.EXPORT_LOGS);
+               exportButton.setFont(FontResources.DIALOG_BUTTON_FONT);
 
                FormData exportData = new FormData();
                exportData.top = new FormAttachment(0, button_top);
                exportData.left = new FormAttachment(0, 20);
-               exportData.width = DesignConstants.DA_BUTTON_WIDTH;
+               exportData.width = DesignConstants.DA_BUTTON_WIDTH+30;
                exportData.height = DesignConstants.DA_BUTTON_HEIGHT;
                exportButton.setLayoutData(exportData);
        }