Merge pull request #2538 from Bilb/fix-ui-issues

fix: selected message box shadow and hide button while loading DB
pull/2540/head
Audric Ackermann 3 years ago committed by GitHub
commit 1fbeb9fa5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -97,7 +97,7 @@
.selection-mode {
.messages-container > *:not(.message-selected) {
animation: toShadow var(--default-duration);
opacity: 0.4;
opacity: 0.3;
}
}
}

@ -172,12 +172,15 @@ class SessionPasswordPromptInner extends React.PureComponent<{}, State> {
/>
</>
)}
<SessionButton
text={showResetElements ? window.i18n('tryAgain') : window.i18n('done')}
buttonType={SessionButtonType.BrandOutline} // TODO: theming update
buttonColor={SessionButtonColor.White}
onClick={this.initLogin}
/>
{!this.state.loading && (
<SessionButton
text={showResetElements ? window.i18n('tryAgain') : window.i18n('done')}
buttonType={SessionButtonType.BrandOutline} // TODO: theming update
buttonColor={SessionButtonColor.White}
onClick={this.initLogin}
disabled={this.state.loading}
/>
)}
</div>
);
}

@ -125,18 +125,6 @@ const StyledReadableMessage = styled(ReadableMessage)<{
`
background-color: var(--color-compose-view-button-background);
`}
${props =>
props.selected &&
`
&.message-selected {
.module-message {
&__container {
box-shadow: var(--color-session-shadow);
}
}
}
`}
`;
export const GenericReadableMessage = (props: Props) => {

@ -585,6 +585,7 @@ async function showPasswordWindow() {
}
let aboutWindow: BrowserWindow | null;
// tslint:disable-next-line: max-func-body-length
async function showAbout() {
if (aboutWindow) {
aboutWindow.show();
@ -624,9 +625,11 @@ async function showAbout() {
aboutWindow = null;
});
aboutWindow.once('ready-to-show', () => {
aboutWindow?.show();
});
// looks like sometimes ready-to-show is not fired by electron.
// the fix mentioned here does not work neither: https://github.com/electron/electron/issues/7779.
// But, just showing the aboutWindow right away works correctly, so just force it to be shown when just created.
// It might take half a second to render it's content though.
aboutWindow?.show();
}
let debugLogWindow: BrowserWindow | null = null;
@ -675,8 +678,10 @@ async function showDebugLogWindow() {
debugLogWindow.once('ready-to-show', () => {
debugLogWindow?.setBackgroundColor('#000');
debugLogWindow?.show();
});
// see above: looks like sometimes ready-to-show is not fired by electron
debugLogWindow?.show();
}
async function saveDebugLog(_event: any, logText: any) {

@ -4,6 +4,7 @@ import { assert } from 'chai';
import * as Settings from '../../../ts/types/Settings';
// tslint:disable-next-line: max-func-body-length
describe('Settings', () => {
describe('isAudioNotificationSupported', () => {
context('on macOS', () => {
@ -61,7 +62,7 @@ describe('Settings', () => {
Sinon.restore();
});
it('should return false', () => {
it('should return true', () => {
assert.isFalse(Settings.isAudioNotificationSupported());
});
});

@ -109,6 +109,7 @@ function clearByMessageId(messageId: string) {
}
}
// tslint:disable-next-line: cyclomatic-complexity
function update(forceRefresh = false) {
if (lastNotificationDisplayed) {
lastNotificationDisplayed.close();

Loading…
Cancel
Save