mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-01 13:14:16 +08:00
On Linux, prevent double-toolbar effect in composer / thread windows
This commit is contained in:
parent
3040656f5d
commit
30a2de042e
3 changed files with 6 additions and 2 deletions
|
@ -16,11 +16,14 @@ Fixes:
|
|||
|
||||
- On Linux, Mailspring now links against libsecret, resolving intermittent "Identity missing required fields" errors that were caused by the Node bindings to libgnome-keyring's API.
|
||||
|
||||
- On Linux, composer and thread windows no longer have a "double window bar".
|
||||
|
||||
- On Linux, window menu bars no longer hide until you press the Alt key.
|
||||
|
||||
- The .rpm package now requires `libXss`, resolving installation issues for some users.
|
||||
|
||||
- Spellchecking on linux now works reliably.
|
||||
|
||||
|
||||
### 1.0.2 (10/6/2017)
|
||||
|
||||
Fixes:
|
||||
|
|
|
@ -27,8 +27,8 @@ export default class WindowLauncher {
|
|||
}) {
|
||||
this.defaultWindowOpts = {
|
||||
frame: process.platform !== 'darwin',
|
||||
toolbar: process.platform !== 'linux',
|
||||
hidden: false,
|
||||
toolbar: true,
|
||||
devMode,
|
||||
safeMode,
|
||||
resizable: true,
|
||||
|
|
|
@ -205,6 +205,7 @@ export default class WindowManager {
|
|||
windowKey: WindowManager.MAIN_WINDOW,
|
||||
windowType: WindowManager.MAIN_WINDOW,
|
||||
title: 'Message Viewer',
|
||||
toolbar: true,
|
||||
neverClose: true,
|
||||
bootstrapScript: require.resolve('../window-bootstrap'),
|
||||
mainWindow: true,
|
||||
|
|
Loading…
Reference in a new issue