Skip to content

Commit

Permalink
Kleiner Fix und Icon Update (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannMaierhofer authored Jul 19, 2024
1 parent 98eebb0 commit 7fc844b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions src/de/jost_net/JVerein/gui/action/ZusatzbetraegeAction.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,17 @@ public ZusatzbetraegeAction(Mitglied m)
public void handleAction(Object context) throws ApplicationException
{
Zusatzbetrag z = null;
if (m == null)
{
return;
}

if (context != null && (context instanceof Zusatzbetrag))
{
z = (Zusatzbetrag) context;
}
else
{
if (m == null)
{
return;
}
try
{
z = (Zusatzbetrag) Einstellungen.getDBService().createObject(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ public void handleAction(Object context)
settings.setAttribute(zusatzfelder + "selected", selcounter);
close();
}
});
}, null, true, "ok.png");
buttons.paint(parent);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void bind() throws Exception
ButtonArea buttons = new ButtonArea();
buttons.addButton("Hilfe", new DokumentationAction(),
DokumentationUtil.FELDDEFINITIONEN, false, "question-circle.png");
buttons.addButton("Übersicht", new FelddefinitionenAction());
buttons.addButton("Übersicht", new FelddefinitionenAction(), null, false, "list.png");
buttons.addButton("Speichern", new Action()
{

Expand Down

0 comments on commit 7fc844b

Please sign in to comment.