Skip to content

Commit

Permalink
Merge pull request #146 from CodeF0x/column-heading-#144
Browse files Browse the repository at this point in the history
Fix for #144
  • Loading branch information
CodeF0x authored Oct 8, 2019
2 parents f92271c + 5ffa696 commit d30e967
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ input:disabled:hover {
grid-row: 2;
justify-self: center;
-webkit-app-region: no-drag;
display: none; /** Issue #144 */
}

#by-name:hover,
Expand Down
7 changes: 6 additions & 1 deletion src/js/View.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,13 @@ module.exports = class View {
self._currentlyPlaying.classList.add('song-container-active');
}

// Search input field is disabled by default -> enable
// Issue #135
self._search.disabled = false;

// Issue #144
[self._sortByAlbum, self._sortByArtist, self._sortByName].forEach(
heading => (heading.style.display = 'block')
);
}

/**
Expand Down

0 comments on commit d30e967

Please sign in to comment.