Index: src/org/openstreetmap/josm/actions/ViewportFollowToggleAction.java
===================================================================
--- src/org/openstreetmap/josm/actions/ViewportFollowToggleAction.java	(revision 15019)
+++ src/org/openstreetmap/josm/actions/ViewportFollowToggleAction.java	(working copy)
@@ -8,6 +8,8 @@
 import java.awt.event.KeyEvent;
 
 import org.openstreetmap.josm.actions.mapmode.DrawAction;
+import org.openstreetmap.josm.gui.Notification;
+import org.openstreetmap.josm.gui.util.GuiHelper;
 import org.openstreetmap.josm.tools.Shortcut;
 
 /**
@@ -36,6 +38,10 @@
     public void actionPerformed(ActionEvent e) {
         toggleSelectedState(e);
         DrawAction.VIEWPORT_FOLLOWING.put(isSelected());
+        String msg = isSelected()
+                ? tr("Viewport following is enabled, press {0} to disable it", getShortcut().getKeyText())
+                : tr("Viewport following is disabled");
+        GuiHelper.runInEDT(() -> new Notification(msg).show());
         notifySelectedState();
     }
 
