/loggerouter/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/loggerouter/trunk

« back to all changes in this revision

Viewing changes to src/application.vala

  • Committer: Gustav Hartvigsson
  • Date: 2025-10-22 22:09:35 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20251022220935-ag7lyi9wrw8v4zwz
Removed debug prints.

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
    }
110
110
 
111
111
    if (opts.actions_path != null) {
112
 
        stdout.printf (settings.to_string ());
113
112
      actions = LO.Actions.from_file (opts.actions_path);
114
113
    } else {
115
114
      actions = LO.Actions.from_xdg ();
142
141
 
143
142
  void add_buttons (Gee.ArrayList<LO.ActionEntry?> list) {
144
143
    foreach (ActionEntry entry in list) {
145
 
      stdout.printf ("%s\n\n", entry.to_string ());
146
144
      var btn = new LO.ActionButton (ref entry);
147
145
      this.list_box.append (btn);
148
146
    }