src/widgets/colorinput.cpp@6988973515d2
src/widgets/colorinput.cpp
Wed, 25 May 2022 20:36:34 +0300
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Wed, 25 May 2022 20:36:34 +0300
- changeset 199
- 6988973515d2
- parent 96
-
165777a20dc7
- permissions
- -rw-r--r--
Fix pick() picking from weird places on the screen with high DPI scaling
glReadPixels reads data from the frame buffer, which contains data after
high DPI scaling, so any reads to that need to take this scaling into account
#include "colorinput.h"
#include "ui_colorinput.h"
ColorInput::ColorInput(QWidget *parent) :
QWidget(parent),
ui(new Ui::ColorInput)
{
ui->setupUi(this);
}
ColorInput::~ColorInput()
{
delete ui;
}