11 lines
188 B
Python
11 lines
188 B
Python
![]() |
import gtk
|
||
|
|
||
|
from sugar.canvas.CanvasBox import CanvasBox
|
||
|
|
||
|
class BuddyPopup(gtk.Window):
|
||
|
def __init__(self, grid)
|
||
|
gtk.Window.__init__(self, gtk.WINDOW_POPUP)
|
||
|
|
||
|
box = CanvasBox(grid)
|
||
|
|