mirror of
https://github.com/ankitects/anki.git
synced 2025-11-09 14:17:13 -05:00
remove delete media option from prefs; too niche
This commit is contained in:
parent
ec16718584
commit
04cf8e9eb9
2 changed files with 0 additions and 10 deletions
|
|
@ -125,7 +125,6 @@ Not currently enabled; click the sync button in the main window to enable."""))
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
def setupOptions(self):
|
def setupOptions(self):
|
||||||
self.form.deleteMedia.setChecked(self.prof['deleteMedia'])
|
|
||||||
self.form.stripHTML.setChecked(self.prof['stripHTML'])
|
self.form.stripHTML.setChecked(self.prof['stripHTML'])
|
||||||
self.connect(
|
self.connect(
|
||||||
self.form.profilePass, SIGNAL("clicked()"),
|
self.form.profilePass, SIGNAL("clicked()"),
|
||||||
|
|
@ -133,7 +132,6 @@ Not currently enabled; click the sync button in the main window to enable."""))
|
||||||
|
|
||||||
def updateOptions(self):
|
def updateOptions(self):
|
||||||
self.prof['stripHTML'] = self.form.stripHTML.isChecked()
|
self.prof['stripHTML'] = self.form.stripHTML.isChecked()
|
||||||
self.prof['deleteMedia'] = self.form.deleteMedia.isChecked()
|
|
||||||
|
|
||||||
def onProfilePass(self):
|
def onProfilePass(self):
|
||||||
pw, ret = getText(_("""\
|
pw, ret = getText(_("""\
|
||||||
|
|
|
||||||
|
|
@ -51,13 +51,6 @@
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
|
||||||
<widget class="QCheckBox" name="deleteMedia">
|
|
||||||
<property name="text">
|
|
||||||
<string>When adding media, move files instead of copying</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
<item>
|
||||||
<widget class="QComboBox" name="newSpread"/>
|
<widget class="QComboBox" name="newSpread"/>
|
||||||
</item>
|
</item>
|
||||||
|
|
@ -465,7 +458,6 @@
|
||||||
<tabstop>showEstimates</tabstop>
|
<tabstop>showEstimates</tabstop>
|
||||||
<tabstop>showProgress</tabstop>
|
<tabstop>showProgress</tabstop>
|
||||||
<tabstop>stripHTML</tabstop>
|
<tabstop>stripHTML</tabstop>
|
||||||
<tabstop>deleteMedia</tabstop>
|
|
||||||
<tabstop>newSpread</tabstop>
|
<tabstop>newSpread</tabstop>
|
||||||
<tabstop>dayOffset</tabstop>
|
<tabstop>dayOffset</tabstop>
|
||||||
<tabstop>lrnCutoff</tabstop>
|
<tabstop>lrnCutoff</tabstop>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue