mirror of
				https://github.com/zulip/zulip-desktop.git
				synced 2025-11-03 21:43:18 +00:00 
			
		
		
		
	activetab: Fix broken last active tab. (#420)
This fixes an issue where the server tabs were not loading according to the last active tab. This used to load last server no matter what the last used server is. Fixes - #416.
This commit is contained in:
		@@ -50,7 +50,8 @@ class ServerTab extends Tab {
 | 
			
		||||
			shortcutText = `Ctrl+${shownIndex}`;
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		ipcRenderer.send('register-server-tab-shortcut', shownIndex);
 | 
			
		||||
		// Array index == Shown index - 1
 | 
			
		||||
		ipcRenderer.send('switch-server-tab', shownIndex - 1);
 | 
			
		||||
 | 
			
		||||
		return shortcutText;
 | 
			
		||||
	}
 | 
			
		||||
 
 | 
			
		||||
@@ -419,7 +419,7 @@ class ServerManagerView {
 | 
			
		||||
		});
 | 
			
		||||
 | 
			
		||||
		ipcRenderer.on('switch-server-tab', (event, index) => {
 | 
			
		||||
			this.activateTab(index);
 | 
			
		||||
			this.activateLastTab(index);
 | 
			
		||||
		});
 | 
			
		||||
 | 
			
		||||
		ipcRenderer.on('reload-proxy', (event, showAlert) => {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user