Skip to content

Commit

Permalink
Setze Titel in Buchungsliste View (#171)
Browse files Browse the repository at this point in the history
Der View hatte keinen Titel
  • Loading branch information
JohannMaierhofer authored Feb 28, 2024
1 parent 72ad3df commit 96a7ab2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/de/jost_net/JVerein/gui/view/BuchungslisteView.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
import de.jost_net.JVerein.gui.control.BuchungsControl;
import de.jost_net.JVerein.gui.control.BuchungsHeaderControl;
import de.willuhn.jameica.gui.AbstractView;
import de.willuhn.jameica.gui.GUI;
import de.willuhn.jameica.gui.input.LabelInput;
import de.willuhn.jameica.gui.parts.ButtonArea;
import de.willuhn.jameica.gui.util.Color;
Expand All @@ -40,9 +41,11 @@ public class BuchungslisteView extends AbstractView
@Override
public void bind() throws Exception
{
GUI.getView().setTitle("Buchungen");

final BuchungsControl control = new BuchungsControl(this);

LabelGroup group = new LabelGroup(getParent(), "Buchungen");
LabelGroup group = new LabelGroup(getParent(), "Konto");
group.addLabelPair("Konto", control.getSuchKonto());

TabFolder folder = new TabFolder(getParent(), SWT.V_SCROLL | SWT.BORDER);
Expand Down

0 comments on commit 96a7ab2

Please sign in to comment.