From 8cbb3276591c70ffd148c25219b701c6e7a6615e Mon Sep 17 00:00:00 2001 From: blitzmann Date: Sun, 12 Nov 2017 23:58:30 -0500 Subject: [PATCH] Fix bug that caused race image to not appear in fitting tab --- gui/chrome_tabs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/chrome_tabs.py b/gui/chrome_tabs.py index 603c14b9a..66a3b7855 100644 --- a/gui/chrome_tabs.py +++ b/gui/chrome_tabs.py @@ -297,7 +297,7 @@ class ChromeNotebook(wx.Panel): def SetPageIcon(self, i, icon, refresh=True): tab = self.tabs_container.tabs[i] - tab.tabImg = icon + tab.tab_img = icon if refresh: self.tabs_container.AdjustTabsSize() self.Refresh()