promotional bannermobile promotional banner

CritMatic

Track your **highest critical** and normal hits. Display a notification message and play a sound. Display a tooltip for each spell in your spell book or action bar. and more.

File Details

v5.5.6

  • R
  • Apr 22, 2026
  • 2.08 MB
  • 83
  • 11.2.7+3
  • Retail + 3

File Name

CritMatic-v5.5.6.zip

Supported Versions

  • 11.2.7
  • 3.80.0
  • 2.5.5
  • 1.15.8

CritMatic

v5.5.6 (2026-04-22)

Full Changelog

  • fix: lower strata to MEDIUM + anchor scroll to outer frame (v5.5.6)
    Two follow-ups to the v5.5.5 interaction fix, reported on Discord after
    v5.5.5 restored drag/resize on retail 11.0.
    1. Right-click menu rendered behind the window. v5.5.5 left the widget
      at FULLSCREEN_DIALOG (AceGUI constructor default); MenuUtil.Create-
      ContextMenu places the menu at DIALOG, so the menu stacked under
      the window. Dropped the widget to MEDIUM strata (typical addon
      default) in both the constructor and OnAcquire so context menus,
      tooltips, and popups render above.
    2. Inner ScrollFrame didn't follow the outer frame on resize. It was
      created with SetSize(250, 120) and a single TOPLEFT anchor, so
      dragging the edge sizers left the spell list stuck at that size.
      Anchored the scroll container TOPLEFT + BOTTOMRIGHT (leaving room
      for the bottom sizer and the scrollbar), tracked the scroll child
      width via OnSizeChanged, and switched spell rows from a hardcoded
      SetSize(198, h) to a TOPLEFT + TOPRIGHT anchor so rows span the
      full available width at any frame size.