Skip to content

Commit

Permalink
fix: sidebar toolpanels are not using the default labels and icons
Browse files Browse the repository at this point in the history
  • Loading branch information
hyyan committed Jul 2, 2019
1 parent 465634e commit 06ab561
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions BBjGridExWidgetSidebar.bbj
Expand Up @@ -75,7 +75,7 @@ class public BBjGridExWidgetToolpanel implements BBjGridExWidgetToolpanelInterfa

json! = new JsonObject()
json!.addProperty("id",#this!.ID(), err=*next)
json!.addProperty("labelKey",#this!.ID() , err=*next)
json!.addProperty("labelKey",#getLabel() , err=*next)
json!.addProperty("labelDefault",#getLabel() , err=*next)
json!.addProperty("iconKey",#getIcon() , err=*next)
methodret json!
Expand Down Expand Up @@ -126,7 +126,7 @@ class public BBjGridExWidgetColumnsToolpanel extends BBjGridExWidgetToolpanel
rem * Construct new columns toolpanel
rem */
method public BBjGridExWidgetColumnsToolpanel()
#super!("Columns","columns")
#super!("columns","columns")
methodend
rem /**
rem * Construct new toolpanel
Expand Down Expand Up @@ -183,7 +183,8 @@ class public BBjGridExWidgetFiltersToolpanel extends BBjGridExWidgetToolpanel
rem * Construct new filters toolpanel
rem */
method public BBjGridExWidgetFiltersToolpanel()
#super!("Filters","filters")
#super!("filters","filters")
#setIcon("filter")
methodend
rem /**
rem * Construct new toolpanel
Expand Down

0 comments on commit 06ab561

Please sign in to comment.