← Back to team overview

mlhim-specs-dev team mailing list archive

[Branch ~cdd-dev/cdd/trunk] Rev 168: Working on the metadata form display.

 

------------------------------------------------------------
revno: 168
committer: Timothy W. Cook <timothywayne.cook@xxxxxxxxx>
branch nick: cdd
timestamp: Thu 2012-07-12 19:41:05 -0300
message:
  Working on the metadata form display.
modified:
  src/cdd.py


--
lp:cdd
https://code.launchpad.net/~cdd-dev/cdd/trunk

Your team MLHIM Specifications Developers is subscribed to branch lp:cdd.
To unsubscribe from this branch go to https://code.launchpad.net/~cdd-dev/cdd/trunk/+edit-subscription
=== modified file 'src/cdd.py'
--- src/cdd.py	2012-07-12 22:28:29 +0000
+++ src/cdd.py	2012-07-12 22:41:05 +0000
@@ -159,9 +159,8 @@
         vbox = wx.BoxSizer(wx.VERTICAL)
         vbox.Add(self.panel2, border=4)
         gs = wx.GridSizer(4,4,5,5)
-        gs.Add(wx.Button(self,wx.ID_ANY,'BCK'),0,wx.EXPAND)
-        gs.Add(wx.Button(self, wx.ID_ANY,'Close'),0,wx.EXPAND)
-        vbox.Add(gs,proportion=1, flag=wx.EXPAND)
+        gs.Add(self, wx.StaticText(self,-1, "This is the metadata form."),0, wx.EXPAND)
+        vbox.Add(self,-1,gs)
         self.panel2.Show()