Skip to content

Commit

Permalink
fix for query combo box permissions issue. #278
Browse files Browse the repository at this point in the history
  • Loading branch information
timo11 committed Mar 27, 2019
1 parent 4fca738 commit acc8b59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/edu/ku/brc/af/ui/forms/ViewFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -1401,7 +1401,7 @@ protected boolean createItem(final DBTableInfo parentTableInfo,
if (perm != null)
{
//PermissionSettings.dumpPermissions("QCBX: "+tblInfo.getShortClassName(), perm.getOptions());
if (perm.isViewOnly() || !perm.canView())
if (!perm.canView())
{
uiType = FormCellField.FieldType.textfieldinfo;
}
Expand Down

0 comments on commit acc8b59

Please sign in to comment.