diff options
-rw-r--r-- | sc/source/ui/app/inputwin.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx index 5689307e6ae9..8b32bc9129a3 100644 --- a/sc/source/ui/app/inputwin.cxx +++ b/sc/source/ui/app/inputwin.cxx @@ -150,8 +150,9 @@ SfxChildWinInfo ScInputWindowWrapper::GetInfo() const #define IMAGE(id) pImgMgr->SeekImage(id) bool lcl_isExperimentalMode() { - SvtMiscOptions aMiscOptions; - return aMiscOptions.IsExperimentalMode(); + // make inputbar feature on by default, leave the switch for the + // moment in case we need to back it out easily + return true; } //================================================================== |