(self, cursor_name)
| 844 | return cursor_name |
| 845 | |
| 846 | def set_cursor(self, cursor_name): |
| 847 | if cursor_name != self.cursor_name: |
| 848 | self.cursor_name = cursor_name |
| 849 | cursor = Gdk.Cursor.new_from_name(Gdk.Display.get_default(), cursor_name) |
| 850 | self.get_window().set_cursor(cursor) |
| 851 | |
| 852 | def motion_notify_event(self, _darea, event): |
| 853 | if event.state & Gdk.ModifierType.BUTTON2_MASK: |
no outgoing calls
no test coverage detected