MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    Calendar moves right by 5 px every update

    Scheduled Pinned Locked Moved Bug Hunt
    26 Posts 2 Posters 12.8k Views 2 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • S Offline
      sdetweil @emwtur
      last edited by

      @emwtur there is only one custom.css
      css/custom.css where all style overrides go

      Sam

      How to add modules

      learning how to use browser developers window for css changes

      E 1 Reply Last reply Reply Quote 0
      • E Offline
        emwtur @sdetweil
        last edited by

        @sdetweil
        Sorry if I’m not used to this forum messaging.

        I have installed MM new - latest and greatest - after new year using the scripts at https://github.com/sdetweil/MagicMirror_scripts

        your’s I believe :-)
        I have not modified anything inside MM - only added a few modules - the same I had with my previos version - which was the penultimate release I think.
        I have not touched any css files - god forbid - I am a backend dev cheating a little in react.js at work css always end up with !important and strange stuff

        S 1 Reply Last reply Reply Quote 0
        • S Offline
          sdetweil @emwtur
          last edited by

          @emwtur is that cal entry the one with the html?

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          E 1 Reply Last reply Reply Quote 0
          • E Offline
            emwtur @sdetweil
            last edited by

            @sdetweil No it was another calendar module showing a week view -

            I was showing the html I get when I browse to the url of the machine showing the magic mirror - should be the same html that is shown on the mirror - I have the same problems in both anyway

            I have removed the other calendar module and still have the problem

            /P

            S 1 Reply Last reply Reply Quote 0
            • S Offline
              sdetweil @emwtur
              last edited by

              @emwtur still, the symbol name is not being used

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              E 1 Reply Last reply Reply Quote 0
              • E Offline
                emwtur @sdetweil
                last edited by

                @sdetweil

                Doing the dirty fix :
                round line 320 in calendars.js :

                                            const symbols = this.symbolsForEvent(event);
                                            symbols.forEach((s, index) => {
                

                // const symbol = document.createElement(“span”);
                // symbol.className = s;
                // if (index > 0) {
                // symbol.style.paddingLeft = “5px”;
                // }
                // symbolWrapper.appendChild(symbol);
                });
                eventWrapper.appendChild(symbolWrapper);

                removes the issue for me - I assume the calculation goes wrong somehow - I tried to remove my different calendars one by one and it did not affect the “move right” so

                For today - I’ll leave it at that - can’t tell if it’s parsing the calendar and thinking there are more and more symbols ?

                S 1 Reply Last reply Reply Quote 0
                • S Offline
                  sdetweil @emwtur
                  last edited by

                  @emwtur can you show the calendar configs? xxx out the urls

                  there was a fix in the area…

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  E 1 Reply Last reply Reply Quote 0
                  • E Offline
                    emwtur @sdetweil
                    last edited by

                    @sdetweil
                    I’ll reinstall some stuff and try to remove all calendars I had and only use the one from the sample config and see how that goes.
                    Should point to something being wrong with my .ics files ( or how they are parsed, if it works
                    /P

                    S 1 Reply Last reply Reply Quote 0
                    • S Offline
                      sdetweil @emwtur
                      last edited by

                      @emwtur the fix was when there were multiple symbols

                      symbol:[x,y,z]

                      in the calendar specification

                      Sam

                      How to add modules

                      learning how to use browser developers window for css changes

                      E 2 Replies Last reply Reply Quote 0
                      • E Offline
                        emwtur @sdetweil
                        last edited by

                        @sdetweil
                        Yes I had multiple but tried to remove all of them - didn’t help.

                        Anyway having ONLY the cal from config.js.sample looks to work - having restored calendar.js to original

                        1 Reply Last reply Reply Quote 0
                        • E Offline
                          emwtur @sdetweil
                          last edited by

                          @sdetweil
                          it has to do with multiple symbols.
                          looks like the bug can be reproduced using the cal setting from the sample file , just add another symbol and watch it move

                          {
                          		module: "calendar",
                          		header: "US Holidays",
                          		position: "top_left",
                          		config: {
                          			calendars: [
                          				{
                          					fetchInterval: 7 * 24 * 60 * 60 * 1000,
                          					symbol: ["calendar-check","google"]
                          					url: "https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics"
                          				}
                          			]
                          		}
                          	},
                          
                          S 1 Reply Last reply Reply Quote 0
                          • S Offline
                            sdetweil @emwtur
                            last edited by sdetweil

                            @emwtur great!!! thsnks

                            Sam

                            How to add modules

                            learning how to use browser developers window for css changes

                            E 1 Reply Last reply Reply Quote 0
                            • E Offline
                              emwtur @sdetweil
                              last edited by

                              @sdetweil

                              Having single symbols is something I can live with - was just confused - it worked before updating…

                              thank YOU for great work with Magic Mirror.
                              regards
                              /Per-Eric

                              S 1 Reply Last reply Reply Quote 0
                              • S Offline
                                sdetweil @emwtur
                                last edited by sdetweil

                                @emwtur ok, i made the change , so gotta figure out how i screwed that up

                                Sam

                                How to add modules

                                learning how to use browser developers window for css changes

                                S 1 Reply Last reply Reply Quote 0
                                • S Offline
                                  sdetweil @sdetweil
                                  last edited by

                                  @emwtur want to try the fix

                                  calendar.js , line 915

                                  			if (p instanceof Array) {   // keep add brace, remove rest of line or // comment out
                                  			 let temp=[]
                                  			 p.forEach(name=>{temp.push(className +name)});
                                  			 p = temp
                                  			}                                                  
                                  			else p = className + p;  // keep
                                  

                                  Sam

                                  How to add modules

                                  learning how to use browser developers window for css changes

                                  E 1 Reply Last reply Reply Quote 0
                                  • E Offline
                                    emwtur @sdetweil
                                    last edited by

                                    @sdetweil
                                    Looks like it’s working with that fix - line numbers didn’t match so I had to think a little before applying - tested with multiple symbols on some cals and both symbols show and stay in place

                                    /Per-Eric

                                    S 2 Replies Last reply Reply Quote 0
                                    • S Offline
                                      sdetweil @emwtur
                                      last edited by

                                      @emwtur awesome!!!

                                      Sam

                                      How to add modules

                                      learning how to use browser developers window for css changes

                                      1 Reply Last reply Reply Quote 0
                                      • S Offline
                                        sdetweil @emwtur
                                        last edited by

                                        @emwtur the fix for this has been accepted and added to the next release (develop branch)

                                        develop includes the fix for broadcast clipping too…
                                        if you have the develop branch, then you can git pull to update

                                        if you don’t have develop, then see this topic
                                        https://forum.magicmirror.builders/topic/14327/testing-new-fixes-or-solving-current-problems-with-next-release-code

                                        Sam

                                        How to add modules

                                        learning how to use browser developers window for css changes

                                        E 1 Reply Last reply Reply Quote 0
                                        • E Offline
                                          emwtur @sdetweil
                                          last edited by

                                          @sdetweil
                                          I’m happy sitting with modded code - I’ll have to stash it when next release comes in march or start fresh again.

                                          Thanks for your efforts once again !
                                          /Per-Eric

                                          S 1 Reply Last reply Reply Quote 0
                                          • S Offline
                                            sdetweil @emwtur
                                            last edited by

                                            @emwtur my upgrade script will handle that

                                            it will say that the calendar.js is modified, do you want to save that,
                                            say no…

                                            https://github.com/sdetweil/MagicMirror_scripts

                                            if you run the test version first, it wont change anything, but still will warn you
                                            (how to remember if you changed files…)

                                            Sam

                                            How to add modules

                                            learning how to use browser developers window for css changes

                                            1 Reply Last reply Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 1 / 2
                                            • First post
                                              Last post
                                            Enjoying MagicMirror? Please consider a donation!
                                            MagicMirror created by Michael Teeuw.
                                            Forum managed by Sam, technical setup by Karsten.
                                            This forum is using NodeBB as its core | Contributors
                                            Contact | Privacy Policy