Skip to content

Commit

Permalink
[DDW-635] Shutting down Screen top Priority (#1428)
Browse files Browse the repository at this point in the history
* [DDW-635] Shutting down Screen top Priority

* [DDW-635] Shutting down Screen top Priority

* [DDW-635] Shutting down Screen top Priority

* [DDW-635] Shutting down Screen top Priority

* [DDW-635] Shutting down Screen top Priority

* [DDW-635] Shutting down Screen top Priority

* [DDW-635] Shutting down Screen top Priority

* [DDW-635] Shutting down Screen top Priority

* [DDW-635] Shutting down Screen top Priority - fixes

* [DDW-635] Shutting down Screen top Priority - fixes

* [DDW-635] Shutting down Screen top Priority - fixes

* [DDW-635] Shutting down Screen top Priority - fixes

* [DDW-635] Shutting down Screen top Priority - fixes

* [DDW-635] Shutting down Screen top Priority - fixes

* [DDW-635] Minor cleanup
  • Loading branch information
DeeJayElly authored and nikolaglumac committed Jul 10, 2019
1 parent fb74963 commit 301d05a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ Changelog

### Fixes

- Fixed shutting down screen top priority ([PR 1428](https://github.com/input-output-hk/daedalus/pull/1428))
- Fixed screen flashes during Daedalus loading ([PR 1444](https://github.com/input-output-hk/daedalus/pull/1444))
- Removes files pushed without running Prettier ([PR 1445](https://github.com/input-output-hk/daedalus/pull/1445))
- Improved Stake pool tooltip positioning ([PR 1429](https://github.com/input-output-hk/daedalus/pull/1429))
Expand Down
4 changes: 2 additions & 2 deletions source/renderer/app/containers/Root.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import React, { Component } from 'react';
import { inject, observer } from 'mobx-react';
import WalletAddPage from './wallet/WalletAddPage';
import Loading from './loading/Loading';
import LoadingPage from './loading/LoadingPage';
import { DIALOGS } from '../../../common/ipc/constants';
import type { InjectedContainerProps } from '../types/injectedPropsType';

Expand Down Expand Up @@ -59,7 +59,7 @@ export default class Root extends Component<Props> {
!isSystemTimeCorrect ||
isNotEnoughDiskSpace
) {
return <Loading stores={stores} actions={actions} />;
return <LoadingPage stores={stores} actions={actions} />;
}

if (!wallets.hasAnyWallets) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import type { InjectedProps } from '../../types/injectedPropsType';

@inject('stores', 'actions')
@observer
export default class Loading extends Component<InjectedProps> {
export default class LoadingPage extends Component<InjectedProps> {
static defaultProps = { stores: null, actions: null };

get activeOverlay() {
Expand Down
1 change: 1 addition & 0 deletions source/renderer/app/stores/NetworkStatusStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,7 @@ export default class NetworkStatusStore extends Store {
this.tlsConfig = null;
});
this._setDisconnected(wasConnected);
this.stores.app._closeActiveDialog();
break;
default:
this._setDisconnected(wasConnected);
Expand Down

0 comments on commit 301d05a

Please sign in to comment.