diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-09-05 17:21:44 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-09-05 17:21:44 +0200 |
commit | 2ca5ae5fc7a0bf752dc22026b627c0a3a742270b (patch) | |
tree | d90a7826563bbea3df0aefa23f75df3f457aad4a /gui/mapping-window.hpp | |
parent | 4f7bafa0124c3baa7b8da18806f50e6ff84fcf98 (diff) |
gui/mappings: set smaller snap for XYZ splines
Reported-by: @olegiy
Issue: #436
Diffstat (limited to 'gui/mapping-window.hpp')
-rw-r--r-- | gui/mapping-window.hpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gui/mapping-window.hpp b/gui/mapping-window.hpp index cb589efc..7648c994 100644 --- a/gui/mapping-window.hpp +++ b/gui/mapping-window.hpp @@ -1,8 +1,13 @@ #pragma once -#include <QWidget> + #include "logic/mappings.hpp" #include "ui_mapping-window.h" +#include <QWidget> +#include <QShowEvent> +#include <QCloseEvent> +#include <QCheckBox> + class MapWidget final : public QWidget { Q_OBJECT @@ -14,6 +19,7 @@ private: Mappings& m; main_settings s; + void closeEvent(QCloseEvent*) override; void save_dialog(); |