src/widgets/colorinput.cpp

Thu, 15 Jun 2023 16:18:03 +0300

author
Teemu Piippo <teemu.s.piippo@gmail.com>
date
Thu, 15 Jun 2023 16:18:03 +0300
changeset 383
530d23cd4e97
parent 96
165777a20dc7
permissions
-rw-r--r--

Refactor, make selecting elements from the model select the corresponding line from the editor as well

#include "colorinput.h"
#include "ui_colorinput.h"

ColorInput::ColorInput(QWidget *parent) :
	QWidget(parent),
	ui(new Ui::ColorInput)
{
	ui->setupUi(this);
}

ColorInput::~ColorInput()
{
	delete ui;
}

mercurial