Skip to content

Instantly share code, notes, and snippets.

@lettergram
Created March 18, 2015 23:17
Show Gist options
  • Select an option

  • Save lettergram/d5bc256d90ba844fda32 to your computer and use it in GitHub Desktop.

Select an option

Save lettergram/d5bc256d90ba844fda32 to your computer and use it in GitHub Desktop.
void MainWindow::on_webView_loadProgress(int progress){
ui->urlLineEdit->setVisible(false);
ui->progressBar->setValue(progress);
if(progress == 100){
ui->urlLineEdit->setVisible(true);
ui->urlLineEdit->setText(ui->webView->url().toString());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment