* Based on PR pkg/48837 from tsutsui@, thank you. The most important change for Japanese ibus-mozc users is: >> FIX: The initial mode of ibus-mozc shouldn't be Hiragana with IBus 1.5+ >> (Issue 201) Changelog: r192 2014-05-16 1.15.1785.102 Build related changes: Removed an undocumented option --channel_dev from build_mozc.py gyp Removed runtime dependency on OpenSSL on NaCl, Mac, and Linux ( Issue 215 ). Android build is now only tested with NDK r9d Debug_Android and Release_Android are deprecated. You can simply specify Debug and Android, respectively. Removed base/base.h. ( Issue 218 ) New features and improvement for Android: Add Unicode 6 Emoji support with EmojiCapable annotation Add a menu item for Voice input in the input options menu User dictionary is now exportable Improved accessibility support Improved hardware keyboard support Use optimized layouts for: TYPE_TEXT_VARIATION_URI TYPE_TEXT_VARIATION_EMAIL_ADDRESS TYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS Long pressable UI elements now have three dots marker New features and improvement for Windows: Enable DirectWrite on Windows 7 and later Enable Color Emoji rendering on Windows 8.1 and later Implement more TSF interfaces ITfCandidateList ITfFnGetLinguisticAlternates ITfFnSearchCandidateProvider ITfFnReconversion Fixed issues: FIX: TF_E_NOLAYOUT is ignored in tsf-mozc on Windows FIX: Candidate window never disappears when TSF-aware Firefox loses keyboard focus FIX: Wrong event handling for special events in emacs-mozc FIX: Better support LEIM and fix document links in emacs-mozc FIX: Top of suggest/candidate item is displayed right behind preedit text ( Issue 147 ) FIX: Candidates in overlay style are displayed sideways if header-line-format is non-nil ( Issue 196 ) FIX: The initial mode of ibus-mozc shouldn't be Hiragana with IBus 1.5+ ( Issue 201 ) FIX: Compilation error due to text encoding with Visual C++ ( Issue 206 ) FIX: Input methods are unavailable when guest-login (Chromium Issue 339318) FIX: Eisu Kana keys are not behaving properly (Chromium Issue 340194)
13 lines
562 B
C++
13 lines
562 B
C++
$NetBSD: patch-gui_dictionary__tool_dictionary__tool.cc,v 1.5 2014/06/15 13:08:34 ryoon Exp $
|
|
|
|
--- gui/dictionary_tool/dictionary_tool.cc.orig 2014-05-21 10:51:22.000000000 +0000
|
|
+++ gui/dictionary_tool/dictionary_tool.cc
|
|
@@ -347,7 +347,7 @@ DictionaryTool::DictionaryTool(QWidget *
|
|
#endif // !ENABLE_CLOUD_SYNC
|
|
|
|
// main window
|
|
-#ifndef OS_LINUX
|
|
+#if !defined(OS_LINUX) && !defined(OS_NETBSD)
|
|
// For some reason setCentralWidget crashes the dictionary_tool on Linux
|
|
// TODO(taku): investigate the cause of the crashes
|
|
setCentralWidget(splitter_);
|