Hi all,

I'm using Q3Table and want to prevent the user from moving columns.

I used the following Q3Table method:

Qt Code:
  1. setColumnMovingEnabled( false );
To copy to clipboard, switch view to plain text mode 

This works and the user CAN NOT move columns with left mouse button on column header.

But, if the user press left mouse button on column header, holds it, and press right mouse button too, user can still move columns.

To prevent this too, I used the following Q3Header method:

Qt Code:
  1. setMovingEnabled( false );
To copy to clipboard, switch view to plain text mode 

My question: is there any documentation regarding this left mouse button with right mouse button trick?

Regards,

Avner.