mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-16 08:46:08 +03:00
Merge pull request #1576 from mitchellh/undefined
core: remove undefined access on variable
This commit is contained in:
@ -2799,8 +2799,9 @@ fn dragLeftClickSingle(
|
||||
// Resets the selection if we switched directions, depending on the select
|
||||
// mode. See dragLeftClickSingle for more details.
|
||||
fn checkResetSelSwitch(self: *Surface, screen_point: terminal.point.ScreenPoint) void {
|
||||
var reset: bool = undefined;
|
||||
if (self.io.terminal.screen.selection) |sel| {
|
||||
const sel = self.io.terminal.screen.selection orelse return;
|
||||
|
||||
var reset: bool = false;
|
||||
if (sel.rectangle) {
|
||||
// When we're in rectangle mode, we reset the selection relative to
|
||||
// the click point depending on the selection mode we're in, with
|
||||
@ -2824,10 +2825,8 @@ fn checkResetSelSwitch(self: *Surface, screen_point: terminal.point.ScreenPoint)
|
||||
else
|
||||
screen_point.before(sel.start);
|
||||
}
|
||||
}
|
||||
|
||||
if (reset)
|
||||
self.setSelection(null);
|
||||
if (reset) self.setSelection(null);
|
||||
}
|
||||
|
||||
// Handles how whether or not the drag screen point is before the click point.
|
||||
|
Reference in New Issue
Block a user