IDEMPIERE-464 Dashboard third column moved to the botton
This commit is contained in:
parent
8bddd48175
commit
ed20b4c6b5
|
@ -137,7 +137,8 @@ public class DashboardController implements EventListener<Event> {
|
|||
dps = MDashboardPreference.getForSession(isShowInDashboard, AD_User_ID, AD_Role_ID); // based on user and role
|
||||
noOfCols = MDashboardPreference.getForSessionColumnCount(isShowInDashboard, AD_User_ID, AD_Role_ID);
|
||||
|
||||
width = noOfCols <= 0 ? 100 : 100 / noOfCols;
|
||||
int dashboardWidth = isShowInDashboard ? 98 : 100;
|
||||
width = noOfCols <= 0 ? dashboardWidth : dashboardWidth / noOfCols;
|
||||
int useWidth = 0;
|
||||
for (final MDashboardPreference dp : dps)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue