1
0
Bläddra i källkod

Fixed issue with protocols in the Browser

Nicolas Petton 12 år sedan
förälder
incheckning
754d8d685f
3 ändrade filer med 662 tillägg och 711 borttagningar
  1. 328 355
      js/IDE.deploy.js
  2. 328 355
      js/IDE.js
  3. 6 1
      st/IDE.st

Filskillnaden har hållts tillbaka eftersom den är för stor
+ 328 - 355
js/IDE.deploy.js


Filskillnaden har hållts tillbaka eftersom den är för stor
+ 328 - 355
js/IDE.js


+ 6 - 1
st/IDE.st

@@ -1174,6 +1174,8 @@ updateProtocolsList
 !
 
 updateSourceAndButtons
+	| currentProtocol |
+
 	self disableSaveButton.
 	classButtons contents: [:html |
 		html button
@@ -1206,9 +1208,12 @@ updateSourceAndButtons
 				html option
 					class: 'important';
 					with: 'New...'.
+                currentProtocol := selectedProtocol.
+                (currentProtocol isNil and: [ selectedMethod notNil ])
+                	ifTrue: [ currentProtocol := selectedMethod category].
 				self protocols do: [:each |
 					option := html option with: each.
-					selectedProtocol = each ifTrue: [ option at: 'selected' put: 'selected' ] ]].
+					currentProtocol = each ifTrue: [ option at: 'selected' put: 'selected' ] ]].
 		selectedMethod isNil ifFalse: [
 			referencesSelect := html select.
                         referencesSelect

Vissa filer visades inte eftersom för många filer har ändrats