prawnsalad / KiwiIRC

This is **DEPRECATED**! Please go to https://github.com/kiwiirc/kiwiirc
https://kiwiirc.com
GNU Affero General Public License v3.0
891 stars 277 forks source link

Activate tab when clicking channel's name #891

Open ivfit opened 8 years ago

ivfit commented 8 years ago

When you click e.g. #channel, it opens tab, but it doesn't make it active.

To fix this, edit client/src/views/tabs.js and at the end of panelAdded function add:

if (panel.isServer() || panel.isChannel()) { panel.view.show(); }