(self, group)
| 1058 | self._toolitems[name].append(button) |
| 1059 | |
| 1060 | def _get_groupframe(self, group): |
| 1061 | if group not in self._groups: |
| 1062 | if self._groups: |
| 1063 | self._add_separator() |
| 1064 | frame = tk.Frame(master=self, borderwidth=0) |
| 1065 | frame.pack(side=tk.LEFT, fill=tk.Y) |
| 1066 | frame._label_font = self._label_font |
| 1067 | self._groups[group] = frame |
| 1068 | return self._groups[group] |
| 1069 | |
| 1070 | def _add_separator(self): |
| 1071 | return NavigationToolbar2Tk._Spacer(self) |
no test coverage detected