mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 19:24:08 +00:00
1. Set limit input phrase length option turned off by default
2. Set input phrase length limit to 1000 by default
This commit is contained in:
parent
61eb4e08fe
commit
c02915d5e5
|
@ -210,8 +210,8 @@ Preferences::Preferences():
|
|||
, confirmFavoritesDeletion( true )
|
||||
, collapseBigArticles( false )
|
||||
, articleSizeLimit( 2000 )
|
||||
, limitInputPhraseLength( true )
|
||||
, inputPhraseLengthLimit( 200 )
|
||||
, limitInputPhraseLength( false )
|
||||
, inputPhraseLengthLimit( 1000 )
|
||||
, maxDictionaryRefsInContextMenu ( 20 )
|
||||
#ifndef Q_WS_X11
|
||||
, trackClipboardChanges( false )
|
||||
|
|
|
@ -1737,7 +1737,7 @@ from mouse-over, selection, clipboard or command line</string>
|
|||
<string>Ignore input phrases longer than</string>
|
||||
</property>
|
||||
<property name="checked">
|
||||
<bool>true</bool>
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
@ -1753,7 +1753,7 @@ from mouse-over, selection, clipboard or command line</string>
|
|||
<number>5</number>
|
||||
</property>
|
||||
<property name="value">
|
||||
<number>200</number>
|
||||
<number>1000</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
|
Loading…
Reference in a new issue