panel_welcome.vala 292 B

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