IDEMPIERE-4751 : move reset button to separate with refresh button (#1998)

This commit is contained in:
Zuhri Utama 2023-09-20 20:51:06 +07:00 committed by GitHub
parent b5acb53ee2
commit 6a7c7d7101
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -208,10 +208,6 @@ public final class ConfirmPanel extends Div
{ {
addComponentsLeft(createButton(A_REFRESH)); addComponentsLeft(createButton(A_REFRESH));
} }
if (withResetButton)
{
addComponentsLeft(createButton(A_RESET));
}
if (withCustomizeButton) if (withCustomizeButton)
{ {
addComponentsLeft(createButton(A_CUSTOMIZE)); addComponentsLeft(createButton(A_CUSTOMIZE));
@ -224,6 +220,10 @@ public final class ConfirmPanel extends Div
{ {
addComponentsLeft(createButton(A_ZOOM)); addComponentsLeft(createButton(A_ZOOM));
} }
if (withResetButton)
{
addComponentsLeft(createButton(A_RESET));
}
} }
/** /**