From bda0281c79937622ed7508ef78709392525b51b3 Mon Sep 17 00:00:00 2001 From: Jared Bruni Date: Thu, 7 May 2020 23:02:23 -0700 Subject: [PATCH] fixed some coordinates --- src/main_window.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main_window.cpp b/src/main_window.cpp index ce7c836..99d2376 100644 --- a/src/main_window.cpp +++ b/src/main_window.cpp @@ -240,7 +240,7 @@ void AC_MainWindow::createControls() { btn_remove->setGeometry(390, 215, 80, 25); btn_moveup->setGeometry(460, 215, 80, 25); btn_movedown->setGeometry(530, 215, 80, 25); - btn_load->setGeometry(655+20, 215, 60, 25); + btn_load->setGeometry(655+30, 215, 60, 25); btn_save->setGeometry(655+60+20, 215, 60, 25); btn_sub->setGeometry(10, 165, 100, 25); btn_clr->setGeometry(115, 165, 100, 25); @@ -356,7 +356,7 @@ void AC_MainWindow::createControls() { chk_negate->setCheckState(Qt::Unchecked); use_settings = new QCheckBox(tr("Settings"), this); use_settings->setCheckState(Qt::Checked); - use_settings->setGeometry(615, 215,80, 20); + use_settings->setGeometry(613, 220,80, 20); connect(chk_negate, SIGNAL(clicked()), this, SLOT(chk_Clicked())); combo_rgb = new QComboBox(this); @@ -1509,7 +1509,7 @@ void AC_MainWindow::help_About() { QString about_str; QTextStream stream(&about_str); stream << tr("Acid Cam Qt version: ") << ac_version << " filters: " << ac::version.c_str() << "

"; - stream << tr("Engineering by Jared Bruni

This software is dedicated to all the people that experience mental illness.

My Social Media Accounts

\n\n GitHub
\nYouTube
Instagram
LostSideDead Facebook
My Facebook
Twitter


\n"); + stream << tr("Engineering by Jared Bruni

This software is dedicated to all the people that experience mental illness.

If you wish to donate to this project you can here: Donate

My Social Media Accounts

\n\n GitHub
\nYouTube
Instagram
LostSideDead Facebook
My Facebook
Twitter


\n"); QMessageBox::information(this, tr("About Acid Cam"), about_str); }