Skip to content

Commit

Permalink
default the location filter to off
Browse files Browse the repository at this point in the history
to preserve default vanilla behavior
  • Loading branch information
myk002 committed Oct 17, 2023
1 parent 0fc4b15 commit 29d3993
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/lua/sort/locationselector.lua
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ function LocationSelectorOverlay:init()
frame={l=1, t=0, r=1},
label="Hide established:",
key='CUSTOM_SHIFT_E',
initial_option=true,
initial_option=false,
on_change=function() self:do_search(self.subviews.search.text, true) end,
},
},
Expand Down Expand Up @@ -113,7 +113,7 @@ end
function LocationSelectorOverlay:reset()
LocationSelectorOverlay.super.reset(self)
self.cache = nil
self.subviews.hide_established:setOption(true, false)
self.subviews.hide_established:setOption(false, false)
end

function LocationSelectorOverlay:get_cache()
Expand Down

0 comments on commit 29d3993

Please sign in to comment.