Skip to content

Commit

Permalink
Button text groß und Icons wie für openjverein#111
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannMaierhofer committed Jan 22, 2024
1 parent 3f8d18e commit 0f5487a
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ protected void paint(Composite parent) throws Exception
group.addLabelPair("", getStatus());

ButtonArea buttons = new ButtonArea();
buttons.addButton("übernehmen", new Action()
buttons.addButton("Übernehmen", new Action()
{
@Override
public void handleAction(Object context)
Expand All @@ -97,8 +97,8 @@ public void handleAction(Object context)
ueberschr = (Boolean) getUeberschreiben().getValue();
close();
}
}, null, true, "check.png");
buttons.addButton("entfernen", new Action()
}, null, true, "ok.png");
buttons.addButton("Entfernen", new Action()
{

@Override
Expand All @@ -108,15 +108,15 @@ public void handleAction(Object context)
close();
}
}, null, false, "undo.png");
buttons.addButton("abbrechen", new Action()
buttons.addButton("Abbrechen", new Action()
{
@Override
public void handleAction(Object context)
{
abort = true;
close();
}
}, null, false, "stop-circle.png");
}, null, false, "process-stop.png");
getShell().addListener(SWT.Close,new Listener()
{
public void handleEvent(Event event)
Expand Down

0 comments on commit 0f5487a

Please sign in to comment.