Initial commit of BudgetPro
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#ifndef SEPERATORLINE_H
|
||||
#define SEPERATORLINE_H
|
||||
|
||||
#include <QLabel>
|
||||
|
||||
class SeperatorLine : public QLabel {
|
||||
Q_OBJECT
|
||||
public:
|
||||
SeperatorLine(QWidget* parent = 0) {
|
||||
Q_UNUSED(parent);
|
||||
setFixedSize(1, 18);
|
||||
setStyleSheet("border: 1px solid rgba(0, 0, 0, 0.1);");
|
||||
}
|
||||
~SeperatorLine() {}
|
||||
|
||||
};
|
||||
#endif // SEPERATORLINE_H
|
||||
Reference in New Issue
Block a user