14 lines
252 B
C++
14 lines
252 B
C++
#pragma once
|
|
|
|
#include <gtk4-layer-shell/gtk4-layer-shell.h>
|
|
#include <gtkmm.h>
|
|
#include <gtkmm/label.h>
|
|
|
|
class Spacer : public Gtk::Label {
|
|
public:
|
|
Spacer() {
|
|
set_hexpand(true);
|
|
set_text("|");
|
|
set_name("spacer");
|
|
}
|
|
}; |