Limit window title width (fix #99)

This commit is contained in:
Feross Aboukhadijeh
2016-03-08 20:01:09 -08:00
parent 112d08c10d
commit edf08d06ec
2 changed files with 2 additions and 1 deletions

View File

@@ -30,7 +30,7 @@ function Header (state, dispatch) {
function getTitle () {
if (process.platform === 'darwin') {
return hx`<div class='title'>${state.window.title}</div>`
return hx`<div class='title ellipsis'>${state.window.title}</div>`
}
}