Minor - Make the Summary checkbox control align better with the other toolbar buttons.
This commit is contained in:
parent
158cf79834
commit
430cc0331b
|
@ -245,9 +245,13 @@ public class ZkReportViewer extends Window implements EventListener<Event>, ITab
|
||||||
comboReport.setTooltiptext(Msg.translate(Env.getCtx(), "AD_PrintFormat_ID"));
|
comboReport.setTooltiptext(Msg.translate(Env.getCtx(), "AD_PrintFormat_ID"));
|
||||||
toolBar.appendChild(comboReport);
|
toolBar.appendChild(comboReport);
|
||||||
|
|
||||||
|
toolBar.appendChild(new Separator("vertical"));
|
||||||
|
|
||||||
summary.setText(Msg.getMsg(Env.getCtx(), "Summary"));
|
summary.setText(Msg.getMsg(Env.getCtx(), "Summary"));
|
||||||
toolBar.appendChild(summary);
|
toolBar.appendChild(summary);
|
||||||
|
|
||||||
|
toolBar.appendChild(new Separator("vertical"));
|
||||||
|
|
||||||
bCustomize.setImage("/images/Preference24.png");
|
bCustomize.setImage("/images/Preference24.png");
|
||||||
bCustomize.setTooltiptext(Util.cleanAmp(Msg.getMsg(Env.getCtx(), "PrintCustomize")));
|
bCustomize.setTooltiptext(Util.cleanAmp(Msg.getMsg(Env.getCtx(), "PrintCustomize")));
|
||||||
toolBar.appendChild(bCustomize);
|
toolBar.appendChild(bCustomize);
|
||||||
|
@ -440,6 +444,7 @@ public class ZkReportViewer extends Window implements EventListener<Event>, ITab
|
||||||
private void dynInit()
|
private void dynInit()
|
||||||
{
|
{
|
||||||
summary.addActionListener(this);
|
summary.addActionListener(this);
|
||||||
|
summary.setStyle("font-size: 14px");
|
||||||
|
|
||||||
fillComboReport(m_reportEngine.getPrintFormat().get_ID());
|
fillComboReport(m_reportEngine.getPrintFormat().get_ID());
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue