Skip to content

Commit

Permalink
Fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed May 23, 2019
1 parent 3132d85 commit c6b1ac2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/terminal/src/widget.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import { TerminalSession } from '@jupyterlab/services';

import { IS_MAC } from '@phosphor/domutils';
import { Platform } from '@phosphor/domutils';

import { Message, MessageLoop } from '@phosphor/messaging';

Expand Down Expand Up @@ -256,7 +256,7 @@ export class Terminal extends Widget implements ITerminal.ITerminal {

// Do not add any Ctrl+C/Ctrl+V handling on macOS,
// where Cmd+C/Cmd+V works as intended.
if (IS_MAC) {
if (Platform.IS_MAC) {
return;
}

Expand Down

0 comments on commit c6b1ac2

Please sign in to comment.