From eb2e971f6a6475e76e4a72b99ff17f21fe75697c Mon Sep 17 00:00:00 2001 From: Stefan Schimanski Date: Tue, 26 Feb 2008 13:09:44 +0000 Subject: [PATCH] * "show popup without delay"-checkbox was missing a connect git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23247 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/GuiPrefs.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/frontends/qt4/GuiPrefs.cpp b/src/frontends/qt4/GuiPrefs.cpp index e68968d981..66614a61dd 100644 --- a/src/frontends/qt4/GuiPrefs.cpp +++ b/src/frontends/qt4/GuiPrefs.cpp @@ -274,6 +274,8 @@ PrefInput::PrefInput(GuiPreferences * form, QWidget * parent) this, SIGNAL(changed())); connect(popupTextCB, SIGNAL(clicked()), this, SIGNAL(changed())); + connect(popupAfterCompleteCB, SIGNAL(clicked()), + this, SIGNAL(changed())); connect(mouseWheelSpeedSB, SIGNAL(valueChanged(double)), this, SIGNAL(changed())); }