diff options
author | Alexander Golubev <fatzer2@gmail.com> | 2024-02-07 08:00:52 +0300 |
---|---|---|
committer | TDE Gitea <gitea@mirror.git.trinitydesktop.org> | 2024-03-03 17:14:21 +0000 |
commit | 1fea8982fd2f256273989956d962a3daa848041f (patch) | |
tree | 514b7d5f566e24ce15077f6ee4d8990037a71eee | |
parent | 0713c2b1c84765d9d754ae8804968af43fd72be5 (diff) | |
download | tdebase-1fea8982fd2f256273989956d962a3daa848041f.tar.gz tdebase-1fea8982fd2f256273989956d962a3daa848041f.zip |
kxkb: add missing connect
Overvise apply button on the dialog won't be enablen when the option is
changed
Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
-rw-r--r-- | kxkb/kcmlayout.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kxkb/kcmlayout.cpp b/kxkb/kcmlayout.cpp index d780400d6..fb4d5d063 100644 --- a/kxkb/kcmlayout.cpp +++ b/kxkb/kcmlayout.cpp @@ -143,6 +143,7 @@ LayoutConfig::LayoutConfig(TQWidget *parent, const char *name) connect( widget->bgColor, TQ_SIGNAL( changed(const TQColor&) ), this, TQ_SLOT(changed())); connect( widget->fgColor, TQ_SIGNAL( changed(const TQColor&) ), this, TQ_SLOT(changed())); + connect( widget->chkBgTransparent, TQ_SIGNAL( changed(const TQFont&) ), this, TQ_SLOT(changed())); connect( widget->labelFont, TQ_SIGNAL( fontSelected(const TQFont&) ), this, TQ_SLOT(changed())); connect( widget->chkLabelShadow, TQ_SIGNAL( toggled( bool ) ), this, TQ_SLOT(changed())); connect( widget->shColor, TQ_SIGNAL( changed(const TQColor&) ), this, TQ_SLOT(changed())); |