Razvan
Razvan

Reputation: 181

Scale a Gtkmm::Entry

I am trying to scale in both dimensions a Gtkmm Entry object. I wasn't able to find anything useful for this. Does anyone know how to achieve this?

Upvotes: 0

Views: 89

Answers (1)

Razvan
Razvan

Reputation: 181

I managed to find the answer. There is the set_size_request property that can change the size of the entry.

entryBox[i * ROW_SZ + j]->set_size_request(40);

Upvotes: 0

Related Questions