Browse Source

Trying to get around broke file::// url access in qt 5.11

sisyphus
Dustin Falgout 7 years ago
parent
commit
9fec52ba9a
No known key found for this signature in database
GPG Key ID: AEA529BF122902E5
  1. 2
      build/utils.sh
  2. 2
      themes/default/js/greeter.js

2
build/utils.sh

@ -44,7 +44,7 @@ do_install() {
}
do_install_dev() {
cp -RH "${REPO_DIR}/whither/whither" /usr/lib/python3.6/site-packages/
cp -RH "${REPO_DIR}/whither/whither" /usr/lib/python3.6/site-packages
}
generate_pot_file() {

2
themes/default/js/greeter.js vendored

@ -329,7 +329,7 @@ class BackgroundManager {
for ( let image_file of _config.background_images ) {
let $link = $( '<a href="#"><div>' ),
$img_el = $link.children( 'div' ),
img_url = `url(file://${image_file})`;
img_url = `url(web-greeter://${image_file})`;
if ( image_file === this.current_background || img_url === current_bg_url ) {
$link.addClass( 'active' );

Loading…
Cancel
Save