build: update to zig-0.14.0-dev.3280
This commit is contained in:
		
							parent
							
								
									9b197e7209
								
							
						
					
					
						commit
						a0514a6f7e
					
				
					 5 changed files with 17 additions and 15 deletions
				
			
		| 
						 | 
				
			
			@ -104,7 +104,7 @@ pub fn remove_all(self: *Self) void {
 | 
			
		|||
}
 | 
			
		||||
 | 
			
		||||
pub fn pop(self: *Self) ?Widget {
 | 
			
		||||
    return if (self.widgets.popOrNull()) |ws| ws.widget else null;
 | 
			
		||||
    return if (self.widgets.pop()) |ws| ws.widget else null;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
pub fn empty(self: *const Self) bool {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -629,7 +629,7 @@ pub const Editor = struct {
 | 
			
		|||
 | 
			
		||||
    pub fn pop_cursor(self: *Self, _: Context) Result {
 | 
			
		||||
        if (self.cursels.items.len > 1) {
 | 
			
		||||
            const cursel = self.cursels.popOrNull() orelse return orelse return;
 | 
			
		||||
            const cursel = self.cursels.pop() orelse return orelse return;
 | 
			
		||||
            if (cursel.selection) |sel| if (self.find_selection_match(sel)) |match| {
 | 
			
		||||
                match.has_selection = false;
 | 
			
		||||
            };
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue