CVS Commit by andreas: minor ctlSecurityPanel button fix
require($_SERVER['DOCUMENT_ROOT']."/includes/top_config.php");
?>
CVS Commit by andreas: minor ctlSecurityPanel button fix
Log Message:
-----------
minor ctlSecurityPanel button fix
Modified Files:
--------------
pgadmin3/src/ui:
ctlSecurityPanel.cpp (r1.5 -> r1.6)
Index: ctlSecurityPanel.cpp
===================================================================
RCS file: /projects/pgadmin3/src/ui/ctlSecurityPanel.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -Lsrc/ui/ctlSecurityPanel.cpp -Lsrc/ui/ctlSecurityPanel.cpp -u -w -r1.5 -r1.6
--- src/ui/ctlSecurityPanel.cpp
+++ src/ui/ctlSecurityPanel.cpp
@@ -75,15 +75,18 @@
#endif
wxPoint zeroPos=ConvertDialogToPixels(wxPoint(5, 5));
+
+ btnAddPriv = new wxButton(this, CTL_ADDPRIV, _("Add/Change"));
+ wxSize btnSize=btnAddPriv->GetSize();
wxSize chkSize=ConvertDialogToPixels(wxSize(65,12));
- wxSize btnSize=ConvertDialogToPixels(wxSize(50,-1)); // preliminary height; will be BestSize
wxSize spcSize=ConvertDialogToPixels(wxSize(2, 2));
{
int y = height
- spcSize.GetHeight()
- zeroPos.y * 2
- - chkSize.GetHeight() * (4 + privilegeCount + (needAll ? 0 : 1));
+ - btnSize.GetHeight()
+ - chkSize.GetHeight() * (3 + privilegeCount + (needAll ? 0 : 1));
lbPrivileges = new ctlListView(this, CTL_LBPRIV,
zeroPos,
@@ -91,9 +94,7 @@
lbPrivileges->CreateColumns(imgList, _("User/Group"), _("Privileges"), -1);
- btnAddPriv = new wxButton(this, CTL_ADDPRIV, _("Add/Change"),
- wxPoint(zeroPos.x, y), btnSize);
- btnSize = btnAddPriv->GetSize();
+ btnAddPriv->Move(wxPoint(zeroPos.x, y));
btnDelPriv = new wxButton(this, CTL_DELPRIV, _("Remove"),
wxPoint(zeroPos.x * 2 + btnSize.GetWidth(), y), btnSize);
y += zeroPos.y + btnSize.GetHeight();
Home |
Main Index |
Thread Index