Skip to content

Commit 9cf5e16

Browse files
authored
Merge branch 'main' into rli/flare-exit
2 parents d7ae6cd + 08edb5d commit 9cf5e16

File tree

5 files changed

+23
-2
lines changed

5 files changed

+23
-2
lines changed

.changes/3.83.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"date" : "2025-07-07",
3+
"version" : "3.83",
4+
"entries" : [ {
5+
"type" : "bugfix",
6+
"description" : "Fix auto-suggestions being shown when suggestions are paused"
7+
} ]
8+
}

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# _3.83_ (2025-07-07)
2+
- **(Bug Fix)** Fix auto-suggestions being shown when suggestions are paused
3+
14
# _3.82_ (2025-07-03)
25
- **(Bug Fix)** Skip inline completion when deleting characters
36

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
# Toolkit Version
5-
toolkitVersion=3.83-SNAPSHOT
5+
toolkitVersion=3.84-SNAPSHOT
66

77
# Publish Settings
88
publishToken=

plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/webview/Browser.kt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,14 @@ class Browser(parent: Disposable, private val webUri: URI, val project: Project)
221221
box-shadow: none !important;
222222
border-radius: 0 !important;
223223
}
224+
select.mynah-form-input {
225+
-webkit-appearance: menulist !important;
226+
appearance: menulist !important;
227+
padding: 0 !important;
228+
}
229+
.mynah-select-handle {
230+
visibility: hidden;
231+
}
224232
.mynah-ui-spinner-container > span.mynah-ui-spinner-logo-part > .mynah-ui-spinner-logo-mask.text {
225233
will-change: transform !important;
226234
transform: translateZ(0) !important;

plugins/amazonq/codewhisperer/jetbrains-community/src/software/aws/toolkits/jetbrains/services/codewhisperer/popup/QInlineCompletionProvider.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,8 +592,10 @@ class QInlineCompletionProvider(private val cs: CoroutineScope) : InlineCompleti
592592
val project = editor.project ?: return false
593593

594594
if (!isQConnected(project)) return false
595-
if (!CodeWhispererExplorerActionManager.getInstance().isAutoEnabled() && event.isManualCall()) return false
596595
if (QRegionProfileManager.getInstance().hasValidConnectionButNoActiveProfile(project)) return false
596+
if (event.isManualCall()) return true
597+
if (!CodeWhispererExplorerActionManager.getInstance().isAutoEnabled()) return false
598+
597599
return true
598600
}
599601
}

0 commit comments

Comments
 (0)