Skip to content

Commit d49070f

Browse files
author
Vincent Eichhorn
committed
fixed alignments
1 parent 4fd1b91 commit d49070f

6 files changed

+12
-13
lines changed

src/SpotifyConnect/SPOCApp.class.st

+1-1
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ SPOCApp >> topPanelContent [
592592

593593
{
594594
#category : #updating,
595-
#'squeak_changestamp' : 'VE 7/9/2024 10:39'
595+
#'squeak_changestamp' : 'VE 7/9/2024 11:05'
596596
}
597597
SPOCApp >> updatePlaybackState [
598598

src/SpotifyConnect/SPOCCurrentlyPlaying.class.st

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,13 @@ SPOCCurrentlyPlaying >> track: aSPOCTrack [
9595

9696
{
9797
#category : #updating,
98-
#'squeak_changestamp' : 'TL 7/8/2024 19:58'
98+
#'squeak_changestamp' : 'VE 7/9/2024 11:06'
9999
}
100100
SPOCCurrentlyPlaying >> updatePlaybackState: aState [
101101

102102
super updatePlaybackState: aState.
103103
self isDisabled
104-
ifTrue: [^ self].
104+
ifTrue: [self showPopUp. ^ self].
105105
self track: aState track.
106106
self track hasTertiaryText: false.
107107
self item changeItemTo: self track

src/SpotifyConnect/SPOCPlayer.class.st

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ SPOCPlayer >> executeButtonFunction: anIcon [
153153

154154
{
155155
#category : #initialization,
156-
#'squeak_changestamp' : 'VE 6/10/2024 22:29'
156+
#'squeak_changestamp' : 'VE 7/9/2024 11:13'
157157
}
158158
SPOCPlayer >> initialize [
159159

src/SpotifyConnect/SPOCRefresh.class.st

+4-3
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,15 @@ SPOCRefresh >> icon: anObject [
7070

7171
{
7272
#category : #initialization,
73-
#'squeak_changestamp' : 'TL 7/8/2024 19:39'
73+
#'squeak_changestamp' : 'VE 7/9/2024 11:12'
7474
}
7575
SPOCRefresh >> initialize [
7676

7777
super initialize.
7878

7979
self color: Color transparent;
80-
attachButton
80+
attachButton;
81+
extendFully
8182
]
8283

8384
{
@@ -100,7 +101,7 @@ SPOCRefresh >> needsLogin [
100101

101102
{
102103
#category : #initialization,
103-
#'squeak_changestamp' : 'VE 7/2/2024 18:57'
104+
#'squeak_changestamp' : 'VE 7/9/2024 11:02'
104105
}
105106
SPOCRefresh >> refresh [
106107

src/SpotifyConnect/SPOCSwitchDevice.class.st

+3-5
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ SPOCSwitchDevice >> attachBackground [
9191

9292
{
9393
#category : #building,
94-
#'squeak_changestamp' : 'TL 7/8/2024 19:39'
94+
#'squeak_changestamp' : 'VE 7/9/2024 11:09'
9595
}
9696
SPOCSwitchDevice >> attachButton [
9797

@@ -231,7 +231,7 @@ SPOCSwitchDevice >> hideResults [
231231

232232
{
233233
#category : #initialization,
234-
#'squeak_changestamp' : 'VE 7/9/2024 10:49'
234+
#'squeak_changestamp' : 'VE 7/9/2024 11:11'
235235
}
236236
SPOCSwitchDevice >> initialize [
237237

@@ -242,9 +242,7 @@ SPOCSwitchDevice >> initialize [
242242
devices: OrderedCollection new;
243243
attachResultDisplay;
244244
attachButton;
245-
extendFully;
246-
hResizing: #spaceFill;
247-
listCentering: #center
245+
extendFully
248246
]
249247

250248
{

src/SpotifyConnect/SPOCVolumeSlider.class.st

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ SPOCVolumeSlider >> icon: anObject [
133133

134134
{
135135
#category : #initialization,
136-
#'squeak_changestamp' : 'VE 7/9/2024 10:48'
136+
#'squeak_changestamp' : 'VE 7/9/2024 11:13'
137137
}
138138
SPOCVolumeSlider >> initialize [
139139

0 commit comments

Comments
 (0)