mirror of
https://github.com/fralx/LimeReport.git
synced 2025-09-23 16:39:07 +03:00
ObjectInspector for dark themes has been fixed
This commit is contained in:
@@ -31,8 +31,22 @@
|
||||
#define LRINTPROPITEM_H
|
||||
|
||||
#include "lrobjectpropitem.h"
|
||||
#include <QSpinBox>
|
||||
|
||||
namespace LimeReport {
|
||||
|
||||
class SpinBoxEditor : public QWidget{
|
||||
Q_OBJECT
|
||||
public:
|
||||
SpinBoxEditor(QWidget* parent);
|
||||
int value();
|
||||
void setValue(int value);
|
||||
signals:
|
||||
void editingFinished();
|
||||
private:
|
||||
QSpinBox* m_valueEditor;
|
||||
};
|
||||
|
||||
class IntPropItem : public ObjectPropItem
|
||||
{
|
||||
Q_OBJECT
|
||||
|
Reference in New Issue
Block a user