Skip to content

Commit 12372ee

Browse files
authored
Merge pull request moneymanagerex#8316 from whalley/master
2 parents 53c2cac + 80fecc8 commit 12372ee

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/dialog/NavigatorDialog.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ NavigatorDialog::NavigatorDialog(wxWindow* parent):TreeListDialog(parent, _t("Na
5555
void NavigatorDialog::createColumns() {
5656
m_treeList->AppendColumn(_t("Name"), 250);
5757
m_treeList->AppendColumn(_t("Selection name"));
58-
m_treeList->SetImageList(NavTreeIconImages::instance().getImageList());
58+
wxImageList* imageList = NavTreeIconImages::instance().getImageList();
59+
m_treeList->SetImageList(imageList);
5960

6061
#ifdef __WXMAC__
6162
int iconWidth = imageList->GetSize().GetWidth();

0 commit comments

Comments
 (0)