Skip to content
This repository was archived by the owner on Mar 26, 2024. It is now read-only.

Commit

Permalink
Restore autostart flag
Browse files Browse the repository at this point in the history
  • Loading branch information
IKrukov-HORIS committed May 6, 2021
1 parent bdbef86 commit 068313a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projector-plugin/src/main/kotlin/SessionDialog.kt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class SessionDialog(project: Project?) : DialogWrapper(project) {
private val rwTokenEditor = TokenEditor("Password for read-write access:", ProjectorService.rwToken)
private val roTokenEditor = TokenEditor("Password for read-only access:", ProjectorService.roToken)
private val requireConnectConfirmation: JCheckBox = JCheckBox("Require connection confirmation", ProjectorService.confirmConnection)
private val autostartProjector: JCheckBox = JCheckBox("Start Projector automatically when ${productName()} starts")
private val autostartProjector: JCheckBox = JCheckBox("Start Projector automatically when ${productName()} starts", ProjectorService.autostart)
private val rwInvitationLink = InvitationLink("Read/Write Link:")
private val roInvitationLink = InvitationLink("Read Only Link:")

Expand Down

0 comments on commit 068313a

Please sign in to comment.