Skip to content

Commit 686fab8

Browse files
Merge pull request #3219 from continuedev/pe/enable-osr-mac
fix: enable OSR for non-mac users after validations
2 parents 44bc6eb + db77b50 commit 686fab8

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

extensions/intellij/src/main/kotlin/com/github/continuedev/continueintellijextension/services/ContinueExtensionSettingsService.kt

-6
Original file line numberDiff line numberDiff line change
@@ -271,12 +271,6 @@ class ContinueExtensionConfigurable : Configurable {
271271
* it's a simple integer without dot notation, making it easier to compare.
272272
*/
273273
private fun shouldRenderOffScreen(): Boolean {
274-
// With the 0.0.77 release, non-Mac users have been reporting issues with paste functionality
275-
// in the browser. Disabling OSR for all non-Mac users for now.
276-
if (!SystemInfo.isMac) {
277-
return false
278-
}
279-
280274
val minBuildNumber = 233
281275
val applicationInfo = ApplicationInfo.getInstance()
282276
val currentBuildNumber = applicationInfo.build.baselineVersion

0 commit comments

Comments
 (0)