Remove outdated comment

It's no longer limiting the width to be at least 10 pixels, due to how it has to scale with the width of the table.

Contributes to issue CURA-8686.
This commit is contained in:
Ghostkeeper 2022-01-28 10:57:00 +01:00
parent 43d4075309
commit 7bc109d1f0
No known key found for this signature in database
GPG key ID: D2A8871EE34EC59A
2 changed files with 2 additions and 2 deletions

View file

@ -79,7 +79,7 @@ Item
{
if(drag.active)
{
let new_width = parent.parent.width + mouseX; //Don't go smaller than 10 pixels, to make sure you can still scale it back.
let new_width = parent.parent.width + mouseX;
let sum_widths = mouseX;
for(let i = 0; i < headerBar.children.length; ++i)
{

View file

@ -80,7 +80,7 @@ Item
{
if(drag.active)
{
let new_width = parent.parent.width + mouseX; //Don't go smaller than 10 pixels, to make sure you can still scale it back.
let new_width = parent.parent.width + mouseX;
let sum_widths = mouseX;
for(let i = 0; i < headerBar.children.length; ++i)
{