From cad16fa01b533a473860f53b24238e81d68f0437 Mon Sep 17 00:00:00 2001 From: lostjared Date: Thu, 27 Dec 2018 15:55:04 -0800 Subject: [PATCH] moved filter selection down a little, next will be to get the categories in the menu setup --- src/main_window.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main_window.cpp b/src/main_window.cpp index 520e859..38ab49b 100644 --- a/src/main_window.cpp +++ b/src/main_window.cpp @@ -105,10 +105,10 @@ void AC_MainWindow::createControls() { custom_filters->show(); menu_cat = new QComboBox(this); - menu_cat->setGeometry(10, 85, 380, 30); + menu_cat->setGeometry(10, 90, 380, 30); - menu_cat->addItem("All"); - menu_cat->addItem("All Sorted"); + menu_cat->addItem("All Filters"); + menu_cat->addItem("All Filters Sorted"); menu_cat->addItem("Blend"); menu_cat->addItem("Distort"); menu_cat->addItem("Pattern"); @@ -126,7 +126,7 @@ void AC_MainWindow::createControls() { menu_cat->setCurrentIndex(0); filters = new QComboBox(this); - filters->setGeometry(10, 110, 380, 30); + filters->setGeometry(10, 120, 380, 30); std::vector fnames; for(int i = 0; i < ac::draw_max-5; ++i) { @@ -174,8 +174,8 @@ void AC_MainWindow::createControls() { btn_remove->setGeometry(400, 215, 100, 20); btn_moveup->setGeometry(500, 215, 100, 20); btn_movedown->setGeometry(600, 215, 100, 20); - btn_sub->setGeometry(10, 145, 100, 20); - btn_clr->setGeometry(115, 145, 100, 20); + btn_sub->setGeometry(10, 165, 100, 20); + btn_clr->setGeometry(115, 165, 100, 20); connect(btn_add, SIGNAL(clicked()), this, SLOT(addClicked())); connect(btn_remove, SIGNAL(clicked()), this, SLOT(rmvClicked()));