Author: M0...@gm...
Date: Fri Dec 12 08:38:04 2008
New Revision: 399
Modified:
branches/iVL/.project
branches/iVL/FrmRootPass.class
branches/iVL/FrmRootPass.form
branches/iVL/FrmUserAdd.class
branches/iVL/installer.gambas
Log:
fixed resizing issues on rootpass window
Modified: branches/iVL/.project
==============================================================================
--- branches/iVL/.project (original)
+++ branches/iVL/.project Fri Dec 12 08:38:04 2008
@@ -2,7 +2,7 @@
# Compiled with Gambas 2.9.0
Title=VectorLinux Installer
Startup=MdlCore
-Version=0.1.32
+Version=0.1.33
Library=gb.gtk
Library=gb.form
Library=gb.debug
Modified: branches/iVL/FrmRootPass.class
==============================================================================
--- branches/iVL/FrmRootPass.class (original)
+++ branches/iVL/FrmRootPass.class Fri Dec 12 08:38:04 2008
@@ -64,7 +64,7 @@
.tlbanner.Move(4, 4, .ClientWidth - (.tlBanner.Left * 2))
.hrSep.Move(4, .tlBanner.top + .tlBanner.Height, .tlBanner.Width)
'.Frame1.Resize(.ClientWidth - (.Frame1.Left * 2), .tlBanner.Height *
4)
- .Frame1.Move(4, hrSep.top + .hrSep.Height + .tlBanner.Height, .ClientW
- (.Frame1.left * 2), tlbanner.height * 4)
+ .Frame1.Move(4, hrSep.top + .hrSep.Height + 24, .ClientW -
(.Frame1.left * 2), .ClientH - .Frame1.Top - (.tbPasswd1.Height * 8))
.tlAboutRoot.Move(4, 24, .Frame1.Width - (.tlAboutRoot.Left *
2), .Frame1.Height - .tlAboutRoot.top - 8)
.tlPass1.Move(.Frame1.left, .Frame1.top + .Frame1.Height + 24,
MdlObjSizer.get_object_width(.tlPass1.text), 21)
.tlPass2.Move(.tlPass1.Left, .tlPass1.top + .tlPass1.Height + 4,
MdlObjSizer.get_object_width(.tlPass2.text), 21)
Modified: branches/iVL/FrmRootPass.form
==============================================================================
--- branches/iVL/FrmRootPass.form (original)
+++ branches/iVL/FrmRootPass.form Fri Dec 12 08:38:04 2008
@@ -11,10 +11,10 @@
MoveScaled(2,5,15,1)
}
{ Frame1 Frame
- MoveScaled(1,8,72,22)
+ MoveScaled(1,8,81,22)
Text = ("")
{ tlAboutRoot TextLabel
- MoveScaled(2,3,67,16)
+ MoveScaled(2,3,68,16)
Text = ("The linux root account is pre-assigned to be used as the
system administrator's account. This account is used to perform system-wide
changes such as software upgrades, managing user accounts etc. \n\nMost
other operations do not require administrative priviledges.\nThe root
password must be entered twice for ensured accuracy. When choosing a root
password, think of something easy for you to remember, but hard for others
to guess.")
}
}
Modified: branches/iVL/FrmUserAdd.class
==============================================================================
--- branches/iVL/FrmUserAdd.class (original)
+++ branches/iVL/FrmUserAdd.class Fri Dec 12 08:38:04 2008
@@ -219,7 +219,7 @@
ENDIF
ME.LstUsers.Visible = TRUE
- ME.pbUsrPic.Visible = TRUE
+ ME.pbUsrPic.Visible = FALSE
MdlCore.warn_status_off()
END
@@ -371,6 +371,7 @@
IF Dialog.OpenFile() THEN RETURN
tbPicPath.text = Replace(Dialog.path, ClsGlobal.sSourceMnt, "")
ME.pbUsrPic.Picture = Picture[Dialog.Path]
+ ME.pbUsrPic.Visible = TRUE
' END IF
Modified: branches/iVL/installer.gambas
==============================================================================
Binary files. No diff available.
|