📋 Metadata
- Author: wilBr
- Date: 2021-06-15 16:49:33
- Type:
bug_report - Reply to: post_03900
- Replies (2): post_03903, post_03926
💬 Content
two more lines need adjusts
operators.py:
line 1952:
from ---⇒ context.window_manager.popup_menu(self._draw_rm, pm.name)
to ---⇒ context.window_manager.popup_menu(draw_func=self._draw_rm, title=pm.name)
line 1954:
from ---⇒ context.window_manager.popup_menu(self._draw_rm)
to ---⇒ context.window_manager.popup_menu(draw_func=self._draw_rm)
❤️ 8 likes