Skip to content

Commit

Permalink
60347
Browse files Browse the repository at this point in the history
19551 GLMPopper should accept cmd L shortcut to remote popup and cancel text changes
	https://pharo.fogbugz.com/f/cases/19551

19552 Cancelling changes by cmd L should not request user confirmation
	https://pharo.fogbugz.com/f/cases/19552

http://files.pharo.org/image/60/60347.zip
  • Loading branch information
Jenkins Build Server authored and ci committed Jan 20, 2017
1 parent a5f1253 commit 4546a80
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 17 deletions.
@@ -1,8 +1,5 @@
executeAction

self debugger codePresentation hasUnacceptedEdits ifTrue: [
(self confirm:
'This action will cancel your changes.
Is it OK to cancel changes?' translated) ifTrue: [
self debugger codePresentation clearUserEdits.
self debugger updateCodeEditor ] ]
self debugger updateCodeEditor ]
Expand Up @@ -6,6 +6,10 @@ updateWithString: string from: aMorph
self delete.
aMorph textArea removeHighlightSegment.
aMorph takeKeyboardFocus ];
on: PharoShortcuts current cancelShortcut do: [
self delete.
aMorph textArea editor cancel.
aMorph takeKeyboardFocus ];
on: Character backspace do: [
self delete.
aMorph textArea removeHighlightSegment.
Expand Down
@@ -1,4 +1,4 @@
script60346
script60347

^ 'AST-Core-TheIntegrator.489.mcz
AST-Tests-Core-TheIntegrator.132.mcz
Expand Down Expand Up @@ -94,7 +94,7 @@ FuelTools-Debugger-MaxLeske.14.mcz
FuzzyMatcher-TheIntegrator.18.mcz
FuzzyMatcher-Tests-TheIntegrator.5.mcz
GT-BytecodeDebugger-AndreiChis.33.mcz
GT-Debugger-TheIntegrator.361.mcz
GT-Debugger-TheIntegrator.363.mcz
GT-EventRecorder-AndreiChis.74.mcz
GT-EventRecorder-Tests-TheIntegrator.39.mcz
GT-Inspector-TheIntegrator.444.mcz
Expand All @@ -120,7 +120,7 @@ Glamour-Morphic-Brick-Tests-JurajKubelka.15.mcz
Glamour-Morphic-Pager-MarcusDenker.111.mcz
Glamour-Morphic-Renderer-TudorGirba.352.mcz
Glamour-Morphic-Theme-TheIntegrator.229.mcz
Glamour-Morphic-Widgets-TudorGirba.201.mcz
Glamour-Morphic-Widgets-TheIntegrator.203.mcz
Glamour-Presentations-JurajKubelka.187.mcz
Glamour-Rubric-Presentations-TheIntegrator.58.mcz
Glamour-SpecIntegration-TheIntegrator.6.mcz
Expand Down Expand Up @@ -287,9 +287,9 @@ Regex-Core-TheIntegrator.40.mcz
Regex-Help-MarcusDenker.5.mcz
Regex-Tests-Core-MarcusDenker.9.mcz
ReleaseTests-TheIntegrator.33.mcz
Renraku-YuriyTymchuk.148.mcz
Renraku-YuriyTymchuk.149.mcz
Renraku-Help-YuriyTymchuk.3.mcz
Renraku-Test-YuriyTymchuk.21.mcz
Renraku-Test-YuriyTymchuk.23.mcz
Ring-Core-Containers-TheIntegrator.45.mcz
Ring-Core-Kernel-TheIntegrator.248.mcz
Ring-Monticello-TheIntegrator.43.mcz
Expand Down

This file was deleted.

@@ -0,0 +1,9 @@
update60347
"self new update60347"
self withUpdateLog: '19551 GLMPopper should accept cmd L shortcut to remote popup and cancel text changes
https://pharo.fogbugz.com/f/cases/19551
19552 Cancelling changes by cmd L should not request user confirmation
https://pharo.fogbugz.com/f/cases/19552'.
self loadTogether: self script60347 merge: false.
self flushCaches.
@@ -1,3 +1,6 @@
commentForCurrentUpdate
^ '19565 QA v3.2.11
https://pharo.fogbugz.com/f/cases/19565'
^ '19551 GLMPopper should accept cmd L shortcut to remote popup and cancel text changes
https://pharo.fogbugz.com/f/cases/19551
19552 Cancelling changes by cmd L should not request user confirmation
https://pharo.fogbugz.com/f/cases/19552'

0 comments on commit 4546a80

Please sign in to comment.