diff options
| -rw-r--r-- | src/tabbar.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/tabbar.cpp b/src/tabbar.cpp index 12745772..7326d7af 100644 --- a/src/tabbar.cpp +++ b/src/tabbar.cpp @@ -153,8 +153,8 @@ void TabBar::showTabPreview(int tab)      WebTab *view = mv->webTab(tab);      WebTab *currentView = mv->webTab(currentIndex()); -    // should fix bug #212219 -    if(!currentView) +    // check if view && currentView exist before using them :) +    if(!currentView || !view)          return;      int w = tabSizeHint(tab).width(); | 
