From 1fea8982fd2f256273989956d962a3daa848041f Mon Sep 17 00:00:00 2001 From: Alexander Golubev Date: Wed, 7 Feb 2024 08:00:52 +0300 Subject: [PATCH] kxkb: add missing connect Overvise apply button on the dialog won't be enablen when the option is changed Signed-off-by: Alexander Golubev --- kxkb/kcmlayout.cpp | 1 + 1 file changed, 1 insertion(+) 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()));