Post #3902: two more lines need adjusts
📋 Metadata
- Author: wilBr
- Date: 2021-06-15 16:49:33
- Type:
bug_report - Quality Score: 8/10
- Reply to: post_03900
- Replies (2): post_03903, post_03926
🏷️ Tags
⚙️ Related PME Features
- Pie Menu Editor
- Popup Dialog Editor
💬 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