[Title]Disable zoom in/out on Screenshot chart and UIEvent chart
authorsanghyunnim.lee <sanghyunnim.lee@samsung.com>
Mon, 3 Dec 2012 03:15:34 +0000 (12:15 +0900)
committersanghyunnim.lee <sanghyunnim.lee@samsung.com>
Mon, 3 Dec 2012 03:15:34 +0000 (12:15 +0900)
[Desc.]
[Issue]

org.tizen.dynamicanalyzer/src/org/tizen/dynamicanalyzer/ui/timeline/common/TimelineItemManager.java

index 177cab0..16d15dc 100755 (executable)
@@ -483,9 +483,11 @@ public class TimelineItemManager {
                FormLayout fLayout = new FormLayout();
                infoComp.setLayout(fLayout);
 
-               addZoomLabel(infoComp, chartName);
-               addIconInfoLabel(infoComp, chart);
-               addTextInfoLabel(infoComp, chartName, false);
+               if(chart.getChartType() != TimelineConstants.CHART_TYPE_SCREENSHOT && chart.getChartType() != TimelineConstants.CHART_TYPE_UIEVENT) {
+                       addZoomLabel(infoComp, chartName);
+                       addIconInfoLabel(infoComp, chart);
+                       addTextInfoLabel(infoComp, chartName, false);
+               }
 
                return infoComp;
        }