Skip to content

Commit

Permalink
fix(GUI): report tab for images was allowing long horizontal landscap…
Browse files Browse the repository at this point in the history
…e pictures to extend the cell width indefinitely, now limited to 1.5 times the height w

hich is fixed for all rows (Fixes #181 )
  • Loading branch information
danielweck committed Feb 8, 2025
1 parent 5f01b47 commit 5d3e12c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/renderer/components/ReportSections/Images.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ export default class Images extends React.Component {
return <TableCell key={idx} style={{
border: "black solid 1px", padding: 6,
overflow: "hidden",
maxWidth: Math.round(rowHeight*1.5),
}}>
<img tabIndex="0" onKeyUp={(e) => {
if (e.key === "Enter") {
Expand Down

0 comments on commit 5d3e12c

Please sign in to comment.