Suslik V
Active Member
Edit: Size not a problem any more - https://github.com/obsproject/obs-studio/commit/a75724d8a557b0081ca0d6f03e8c8d02c4aade04
The Hand (H) tool from SmoothDraw v3.2.11.0 now has normal size in capture window.
_______________________
I made new application in Qt 5.8.0, list:
When I use Window Capture (win10), the cursor rendered in OBS Studio (v21.1.0) downscaled (square picture) - is this normal? Previously, I tested it in win7 and there both Window Capture and Display Capture renders it as square instead of rectangle.
The Hand (H) tool from SmoothDraw v3.2.11.0 now has normal size in capture window.
_______________________
I made new application in Qt 5.8.0, list:
Code:
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
QCursor cursor01 = QCursor(QPixmap("cursor01.png"), 0, 0);
this->setCursor(cursor01);
}
MainWindow::~MainWindow()
{
delete ui;
}
Attachments
Last edited: