Skip to content

Commit

Permalink
Made #expandedButton and #collpasedButton on FTBasicItem use the Form…
Browse files Browse the repository at this point in the history
…Set for the expand/collapse toggle.
  • Loading branch information
Rinzwind committed Dec 3, 2023
1 parent c63eaf0 commit 7329e0c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Morphic-Widgets-FastTable/FTBasicItem.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ Class {
}

{ #category : 'expanding-collapsing' }
FTBasicItem class >> expandedForm [
^ self theme treeExpandedForm
FTBasicItem class >> expandedFormSet [
^ self theme treeExpandedFormSet
]

{ #category : 'accessing' }
Expand All @@ -62,8 +62,8 @@ FTBasicItem class >> theme [
]

{ #category : 'expanding-collapsing' }
FTBasicItem class >> unexpandedForm [
^ self theme treeUnexpandedForm
FTBasicItem class >> unexpandedFormSet [
^ self theme treeUnexpandedFormSet
]

{ #category : 'accessing' }
Expand Down Expand Up @@ -125,7 +125,7 @@ FTBasicItem >> collpasedButton [
target: self;
actionSelector: #expandAndRefresh;
arguments: {};
labelGraphic: self class unexpandedForm;
labelFormSet: self class unexpandedFormSet;
color: Color transparent;
helpText: 'Expand Item';
borderWidth: 0
Expand Down Expand Up @@ -199,7 +199,7 @@ FTBasicItem >> expandedButton [
target: self;
actionSelector: #collapseAndRefresh;
arguments: {};
labelGraphic: self class expandedForm;
labelFormSet: self class expandedFormSet;
color: Color transparent;
helpText: 'Unexpand Item';
borderWidth: 0
Expand Down

0 comments on commit 7329e0c

Please sign in to comment.