Download Latest Version flamerobin-0.9.3.c75f861-setup-x64.exe (3.1 MB)
Email in envelope

Get an email when there's a new version of FlameRobin

Home / v26.7.16
Name Modified Size InfoDownloads / Week
Parent folder
flamerobin_26.7.16_amd64.snap 2026-07-27 25.1 MB
FlameRobin-26.7.16-x64.msi 2026-07-27 16.6 MB
flamerobin-portable-26.7.16-x64.zip 2026-07-27 21.1 MB
FlameRobin-26.7.16-x86.msi 2026-07-27 15.9 MB
flamerobin-portable-26.7.16-x86.zip 2026-07-27 20.1 MB
flamerobin-26.7.16.deb 2026-07-27 31.0 MB
flamerobin-26.7.16.flatpak 2026-07-27 15.3 MB
flamerobin-macos-26.7.16.zip 2026-07-27 7.5 MB
FlameRobin v26.7.16 source code.tar.gz 2026-07-27 1.4 MB
FlameRobin v26.7.16 source code.zip 2026-07-27 2.0 MB
README.md 2026-07-27 2.5 kB
Totals: 11 Items   156.1 MB 32

FlameRobin v26.7.16

Patch release fixing the data grid 'looks strange' regression introduced when multiline text support was added.


🐛 Bug Fixes

Fix: Data grid displays with abnormally tall rows on every query (#662)

Symptom: After v26.7.10 introduced multiline text display support, the data grid started showing every row at an expanded height even when the query data contained no line breaks at all. The grid looked visually 'strange' and was hard to read.

Root cause: The gridShowMultilineText preference was defaulting to true in three separate config().get() call sites in DataGrid.cpp and DataGridTable.cpp, and also in the confdef definition. This caused:

  1. wxGridCellAutoWrapStringRenderer to be applied to every text column on every query — even when not needed
  2. AutoSizeRows() to be called after every initial fetch and every idle-fetch increment, making all rows grow to accommodate potential multi-line content that didn't exist

Fix (commit 421b2979): Multiline text display is now opt-in (default false/0) across all three sites:

  • DataGrid.cpp: 3× config().get("gridShowMultilineText", true)false
  • DataGridTable.cpp: same
  • conf-defs/fr_settings.confdef: <default>1</default><default>0</default>

The feature itself is fully preserved — users who want multiline text display can enable it via Preferences → Data Grid → "Allow multiline text display in data grid cells", or by right-clicking the grid and choosing "Best fit rows".


📦 What's Changed

Commit Description
421b2979 Fix data grid looks strange — multiline text off by default

Full Changelog: https://github.com/mariuz/flamerobin/compare/v26.7.15...v26.7.16


🙏 Contributors

  • @Sant-devX — originally reported the strange grid display (#662)
  • @luronumen — confirmed the issue was still reproducible in v26.7.13, triggering this deeper fix

⬇️ Installation

Pre-built packages are available via GitHub Actions for Windows, Linux (Flatpak/Snap/deb), and macOS. See BUILD.md (github.com) for build instructions.

Source: README.md, updated 2026-07-27