View Single Post
Posts: 562 | Thanked: 1,732 times | Joined on Jan 2010 @ NYC
#44
I've seem to have found a little bug and removed feature.

1) After starting a drawing, then creating a new layer and drawing on it. You can no long zoom in or out using the command keys or menu keys. You get an error saying "A programming error has been detected during the execution of the program"

- choices to click details.. or quit.


2) Is there still a way beside xterm to reassign command keys? It used to be in the edit menu

Hopefully this helps. And if there's anything else I can do to help you test this please ask. Also should I file this in a bugziila post too?

x


- details of the error:

Code:
Traceback (most recent call last):
	File "/usr/share/mypaint/gui/drawwindow.py", line 1268, zoom_cb(self=<Window object at 0x42341648 (HildonStackableWindow at 0xb87038)>, action=<gtk.Action object at 0x429097b0 (GtkAction at 0xbdab40)>)
				def zoom_cb(self, action):
						self.zoom(action.get_name())
				def rotate_cb(self, action):
	variables: {'self.zoom': ('local', <bound method Window.zoom of <Window object at 0x42341648 (HildonStackableWindow at 0xb87038)>>), 'action.get_name': ('local', <built-in method get_name of gtk.Action object at 0x429097b0>)}
	File "/usr/share/mypaint/gui/drawwindow.py", line 1290, zoom(self=<Window object at 0x42341648 (HildonStackableWindow at 0xb87038)>, command='ZoomOut')
						z = self.zoomlevel_values[self.zoomlevel]
						self.tdw.set_zoom(z)
	variables: {'z': ('local', 0.66666666666666663), 'self.tdw.set_zoom': ('local', <bound method TiledDrawWidget.set_zoom of <TiledDrawWidget object at 0x43133a80 (GtkDrawingArea at 0xe7dc00)>>)}
	File "/usr/share/mypaint/gui/tileddrawwidget.py", line 383, set_zoom(self=<TiledDrawWidget object at 0x43133a80 (GtkDrawingArea at 0xe7dc00)>, zoom=0.66666666666666663)
						def f(): self.scale = zoom
						self.rotozoom_with_center(f)
	variables: {'self.rotozoom_with_center': ('local', <bound method TiledDrawWidget.rotozoom_with_center of <TiledDrawWidget object at 0x43133a80 (GtkDrawingArea at 0xe7dc00)>>), 'f': ('local', <function f at 0x43078d70>)}
	File "/usr/share/mypaint/gui/tileddrawwidget.py", line 358, rotozoom_with_center(self=<TiledDrawWidget object at 0x43133a80 (GtkDrawingArea at 0xe7dc00)>, function=<function f at 0x43078d70>)
						else:
								w, h = self.window.get_size()
								cx, cy = w/2.0, h/2.0
	variables: {'h': (None, None), 'w': (None, None)}
AttributeError: 'NoneType' object has no attribute 'get_size'
 

The Following 2 Users Say Thank You to xman For This Useful Post: