panel_welcome.vala 280 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2012-2025 Daniele Bartolini et al.
  3. * SPDX-License-Identifier: GPL-3.0-or-later
  4. */
  5. namespace Crown
  6. {
  7. public class PanelWelcome : Gtk.Box
  8. {
  9. public PanelWelcome()
  10. {
  11. Object(orientation: Gtk.Orientation.HORIZONTAL, spacing: 0);
  12. }
  13. }
  14. } /* namespace Crown */