Skip to content

Commit

Permalink
Remove connect box
Browse files Browse the repository at this point in the history
  • Loading branch information
b1weiss committed Dec 12, 2024
1 parent 2eb8572 commit c4d750f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 15 deletions.
8 changes: 1 addition & 7 deletions flutter/lib/desktop/pages/connection_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -278,12 +278,6 @@ class _ConnectionPageState extends State<ConnectionPage>
Expanded(
child: Column(
children: [
Row(
children: [
Flexible(child: _buildRemoteIDTextField(context)),
],
).marginOnly(top: 22),
SizedBox(height: 12),
Divider().paddingOnly(right: 12),
Expanded(child: PeerTabPage()),
],
Expand Down Expand Up @@ -359,7 +353,7 @@ class _ConnectionPageState extends State<ConnectionPage>
);
}
String textToFind = textEditingValue.text.toLowerCase();
_autocompleteOpts = peers
_autocompleteOpts = peers
.where((peer) =>
peer.id.toLowerCase().contains(textToFind) ||
peer.username
Expand Down
8 changes: 0 additions & 8 deletions src/ui/index.tis
Original file line number Diff line number Diff line change
Expand Up @@ -585,14 +585,6 @@ class App: Reactor.Component
</div>
<div .right-pane>
<div .right-content>
<div .card-connect>
<div .title>{translate('Control Remote Desktop')}</div>
<ID @{this.remote_id} />
<div .right-buttons>
<button .button .outline #file-transfer>{translate('Transfer file')}</button>
<button .button #connect>{translate('Connect')}</button>
</div>
</div>
<MultipleSessions @{this.multipleSessions} />
</div>
<ConnectStatus @{this.connect_status} />
Expand Down

0 comments on commit c4d750f

Please sign in to comment.