Skip to content

Commit

Permalink
Merge pull request #9577 from camptocamp/backport/9572-to-master
Browse files Browse the repository at this point in the history
[Backport master] Fix north arrow icon
  • Loading branch information
sbrunner authored Jan 27, 2025
2 parents 6b3a632 + de50091 commit 39d40d7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Binary file modified contribs/gmf/apps/desktop_alt-ref.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified contribs/gmf/apps/oeedit-ref.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions src/controllers/AbstractAppController.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// The MIT License (MIT)
//
// Copyright (c) 2015-2024 Camptocamp SA
// Copyright (c) 2015-2025 Camptocamp SA
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
Expand Down Expand Up @@ -799,8 +799,9 @@ AbstractAppController.prototype.setDefaultBackground_ = function (theme) {
*/
export function getLocationIcon() {
const arrow = document.createElement('span');
arrow.className = 'fa-solid fa-location-crosshairs-arrow';
arrow.className = 'fa-solid fa-location-arrow';
arrow.style.transform = 'rotate(-0.82rad)';
arrow.style.fontSize = '1.3em';
const arrowWrapper = document.createElement('span');
arrowWrapper.appendChild(arrow);
return arrowWrapper;
Expand Down

0 comments on commit 39d40d7

Please sign in to comment.