1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-27 14:14:19 +03:00

Correctly set the state of the draws parallel checkbox

This commit is contained in:
Tae Won Ha 2019-03-14 14:54:56 +01:00
parent 5f92fc6302
commit c4d2eee445
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44
2 changed files with 4 additions and 2 deletions

View File

@ -48,10 +48,12 @@ class AdvancedPref: PrefPane, UiComponent, NSTextFieldDelegate {
if self.useInteractiveZsh != state.mainWindowTemplate.useInteractiveZsh
|| self.useSnapshotUpdate != state.useSnapshotUpdate
|| self.useLiveResize != state.mainWindowTemplate.useLiveResize
{
|| self.drawsParallel != state.mainWindowTemplate.drawsParallel {
self.useInteractiveZsh = state.mainWindowTemplate.useInteractiveZsh
self.useSnapshotUpdate = state.useSnapshotUpdate
self.useLiveResize = state.mainWindowTemplate.useLiveResize
self.drawsParallel = state.mainWindowTemplate.drawsParallel
self.updateViews()
}

View File

@ -1,6 +1,6 @@
# next
* ...
* Bugfix: The state of the "Use Concurrent Rendering" checkbox is not set correctly.
# 0.26.5-308